/* ===== DESIGN TOKENS ===== */
:root {
    --clr-bg: #faf7f2;
    --clr-bg-warm: #f5efe6;
    --clr-bg-alt: #fff8f0;
    --clr-surface: #ffffff;
    --clr-text: #2c2420;
    --clr-text-muted: #6b5e54;
    --clr-text-light: #9a8d82;
    --clr-primary: #c0624a;
    --clr-primary-dark: #a04e3a;
    --clr-primary-light: #e8a090;
    --clr-accent: #d4a854;
    --clr-accent-light: #f0dca8;
    --clr-border: #e5ddd4;
    --clr-border-light: #f0e8df;
    --ff-heading: 'Noto Serif SC', 'Songti SC', serif;
    --ff-body: 'Noto Sans SC', 'PingFang SC', sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(44, 36, 32, 0.06);
    --shadow-md: 0 4px 16px rgba(44, 36, 32, 0.08);
    --shadow-lg: 0 8px 32px rgba(44, 36, 32, 0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--ff-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    font-size: var(--fs-base);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--clr-primary);
    text-decoration: none;
}

ul {
    list-style: none;
}

strong {
    font-weight: 600;
    color: var(--clr-primary-dark);
}

em {
    font-style: italic;
    color: var(--clr-text-muted);
    background: linear-gradient(transparent 60%, var(--clr-accent-light) 60%);
    padding: 0 4px;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 1001;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    width: 0%;
    transition: width 0.15s linear;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.nav.scrolled {
    top: 8px;
    background: rgba(250, 247, 242, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}

.nav-logo {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: var(--fs-lg);
    color: var(--clr-primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.nav-links a {
    font-size: var(--fs-xs);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-primary);
    background: rgba(192, 98, 74, 0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(192, 98, 74, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(212, 168, 84, 0.15) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(44, 36, 32, 0.3), rgba(44, 36, 32, 0.6));
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
    max-width: 800px;
}

.hero-year {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--clr-accent);
    letter-spacing: 6px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-accent {
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-sm);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 48px;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--fs-xs);
    letter-spacing: 2px;
    animation: bob 2s ease-in-out infinite;
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTIONS ===== */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
    background: var(--clr-bg);
}

.section-alt {
    background: var(--clr-bg-alt);
}

.section-badge {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--clr-primary);
    background: rgba(192, 98, 74, 0.1);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.section-motto {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    color: var(--clr-accent);
    margin-bottom: 24px;
    font-style: italic;
}

.section-desc {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 720px;
    line-height: 2;
}

.subsection-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--clr-text);
    margin: 48px 0 24px;
    padding-left: 16px;
    border-left: 3px solid var(--clr-primary);
}

/* ===== INTRO ===== */
.intro-text p {
    font-size: var(--fs-md);
    line-height: 2.2;
    margin-bottom: 24px;
    color: var(--clr-text-muted);
    text-indent: 2em;
}

.intro-text p:first-child {
    font-size: var(--fs-lg);
    color: var(--clr-text);
}

/* ===== PHOTO LAYOUTS ===== */

/* Full-width banner */
.photo-banner {
    margin: 0 -24px 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.photo-banner img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-banner:hover img {
    transform: scale(1.03);
}

.photo-caption {
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    padding: 10px 16px;
    text-align: center;
    font-style: italic;
    background: var(--clr-surface);
}

/* Side-by-side: photo + text */
.photo-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 40px;
}

.photo-side-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.photo-side-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.photo-side-text p {
    color: var(--clr-text-muted);
    line-height: 2;
    text-indent: 2em;
}

/* Three-column gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.photo-gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.photo-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.photo-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-gallery-item:hover img {
    transform: scale(1.05);
}

.photo-gallery-item .photo-caption {
    font-size: var(--fs-xs);
    padding: 8px 12px;
}

/* Two-column duo */
.photo-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
}

.photo-duo-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.photo-duo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.photo-duo-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-duo-item:hover img {
    transform: scale(1.03);
}

.photo-caption-center {
    grid-column: 1 / -1;
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--clr-text-light);
    font-style: italic;
    padding: 8px 0 0;
}

/* ===== PILLARS GRID ===== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.pillar-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-primary-light);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: var(--clr-primary);
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar-card h4 {
    font-family: var(--ff-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: 4px;
}

.pillar-card p {
    font-size: var(--fs-xs);
    color: var(--clr-text-light);
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: linear-gradient(135deg, var(--clr-surface), var(--clr-bg-warm));
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
}

.stat-unit {
    font-size: var(--fs-sm);
    color: var(--clr-accent);
    font-weight: 600;
    margin: 4px 0 8px;
}

.stat-label {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
}

/* ===== HIGHLIGHT CARDS ===== */
.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.highlight-cards.two-col {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
    border-top: 3px solid var(--clr-primary-light);
}

.highlight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.highlight-number {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.highlight-label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 8px;
}

.highlight-detail {
    font-size: var(--fs-xs);
    color: var(--clr-text-light);
    line-height: 1.6;
}

/* ===== STORY CARDS ===== */
.story-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.story-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--clr-primary), var(--clr-accent));
    border-radius: 4px 0 0 4px;
}

.story-card:hover {
    box-shadow: var(--shadow-lg);
}

.story-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--clr-primary);
    background: rgba(192, 98, 74, 0.08);
    padding: 2px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.story-card h4 {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--clr-text);
}

.story-card p {
    color: var(--clr-text-muted);
    line-height: 2;
    text-indent: 2em;
}

.story-card.story-mini {
    padding: 24px 28px;
}

.story-card.story-mini h4 {
    font-size: var(--fs-base);
}

/* ===== NOTES ===== */
.finance-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(192, 98, 74, 0.06);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    margin: 24px 0 40px;
    border-left: 3px solid var(--clr-primary-light);
}

.finance-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--clr-primary);
}

.special-note {
    padding: 16px 24px;
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    border-left: 3px solid var(--clr-accent);
    background: rgba(212, 168, 84, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}

/* ===== DATA TABLE ===== */
.table-wrapper {
    overflow-x: auto;
    margin-bottom: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border-light);
    background: var(--clr-surface);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
}

.data-table th {
    background: linear-gradient(135deg, #4a3328, #6b4535);
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--clr-border-light);
}

.data-table tbody tr:hover {
    background: rgba(192, 98, 74, 0.03);
}

.table-total {
    background: var(--clr-bg-warm);
    font-weight: 600;
}

.table-total td {
    border-bottom: none;
}

.pct-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs);
    color: var(--clr-primary-dark);
    font-weight: 600;
    position: relative;
}

.pct-bar::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 6px;
    background: var(--clr-border-light);
    border-radius: 3px;
    position: relative;
}

.pct-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    width: calc(60px * var(--pct) / 100);
    background: var(--clr-primary);
    border-radius: 3px;
}

.finance-callout {
    background: linear-gradient(135deg, rgba(192, 98, 74, 0.05), rgba(212, 168, 84, 0.08));
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 20px;
}

.finance-callout h4 {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--clr-primary-dark);
    margin-bottom: 12px;
}

.finance-callout p {
    color: var(--clr-text-muted);
    line-height: 2;
}

/* ===== STRATEGY ===== */
.strategy-list {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.strategy-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.strategy-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.strategy-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 98, 74, 0.08);
    border-radius: 12px;
    color: var(--clr-primary);
}

.strategy-item h4 {
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: 4px;
}

.strategy-item p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
}

/* ===== THANKS ===== */
.thanks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.thanks-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.thanks-card h4 {
    font-family: var(--ff-heading);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--clr-primary-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--clr-border-light);
}

.thanks-card li {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    padding: 6px 0 6px 16px;
    position: relative;
    line-height: 1.7;
}

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

.thanks-footer {
    text-align: center;
    font-family: var(--ff-heading);
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    line-height: 2;
    font-style: italic;
    padding: 32px;
    background: linear-gradient(135deg, rgba(192, 98, 74, 0.04), rgba(212, 168, 84, 0.06));
    border-radius: var(--radius-lg);
}

/* ===== FUTURE ===== */
.future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.future-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.future-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.future-num {
    font-family: var(--ff-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(192, 98, 74, 0.08);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.future-card h4 {
    font-family: var(--ff-heading);
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--clr-primary-dark);
}

.future-card p {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
    line-height: 1.8;
}

/* ===== CLOSING ===== */
.closing {
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
}

.closing p {
    font-size: var(--fs-md);
    color: var(--clr-text-muted);
    margin-bottom: 8px;
    line-height: 2;
}

.closing-poem {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-primary);
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

.closing-org {
    font-size: var(--fs-sm) !important;
    font-weight: 600;
    color: var(--clr-text) !important;
}

.closing-year {
    font-size: var(--fs-sm) !important;
    color: var(--clr-text-light) !important;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 32px;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.6);
    background: #2c2420;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(20px);
        padding: 16px;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border: 1px solid var(--clr-border-light);
        border-top: none;
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: var(--fs-2xl);
    }

    .section-desc {
        font-size: var(--fs-base);
    }

    .subsection-title {
        font-size: var(--fs-lg);
    }

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

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

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

    .data-table {
        font-size: var(--fs-xs);
    }

    .data-table th,
    .data-table td {
        padding: 8px 10px;
    }

    .photo-side {
        grid-template-columns: 1fr;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }

    .photo-duo {
        grid-template-columns: 1fr;
    }

    .photo-banner img {
        height: 240px;
    }

    .photo-banner {
        margin: 0 0 32px;
    }
}

@media (max-width: 480px) {
    .pillars-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .nav {
        top: 8px;
        left: 8px;
        right: 8px;
    }
}

@media print {

    .nav,
    .progress-bar,
    .hero-scroll,
    .hero-particles,
    .hero-overlay {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px;
    }

    .section {
        padding: 30px 0;
        page-break-inside: avoid;
    }
}