/* ===================================================
   KCBSEA - 한국바리스타창업교육협회 공통 스타일시트
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-black: #0a0806;
    --primary-charcoal: #1a1612;
    --primary-brown: #2d1f15;
    --primary-coffee: #4a3728;
    --primary-bronze: #8b6f47;
    --primary-gold: #c9a962;
    --primary-cream: #f5f0e8;
    --primary-white: #fefdfb;
    --accent-warm: #d4b896;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: var(--primary-white);
    color: var(--primary-charcoal);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(254, 253, 251, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(139, 111, 71, 0.1);
    padding: 0.9rem 4rem;
}

/* Header for sub pages */
header.sub-page {
    background: rgba(254, 253, 251, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(139, 111, 71, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--primary-white);
    letter-spacing: -0.02em;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-white);
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

header.scrolled .logo-title,
header.sub-page .logo-title {
    color: var(--primary-charcoal);
}

.logo-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

header.scrolled .logo-subtitle,
header.sub-page .logo-subtitle {
    color: var(--primary-bronze);
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

header.scrolled .nav-links > li > a,
header.sub-page .nav-links > li > a {
    color: var(--primary-coffee);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--primary-gold);
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links > li > a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 180px;
    background: var(--primary-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.nav-links > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: var(--primary-coffee);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.dropdown a:hover,
.dropdown a.active {
    background: var(--primary-cream);
    color: var(--primary-gold);
    padding-left: 1.5rem;
}

.header-cta {
    padding: 0.7rem 1.5rem;
    background: var(--primary-gold);
    color: var(--primary-charcoal);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

header.sub-page .header-cta:hover {
    background: var(--primary-charcoal);
    color: var(--primary-white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-white);
    transition: all 0.3s ease;
}

header.scrolled .menu-toggle span,
header.sub-page .menu-toggle span {
    background: var(--primary-charcoal);
}

/* ===== HERO (Main Page) ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 8, 6, 0.88) 0%,
        rgba(26, 22, 18, 0.75) 50%,
        rgba(45, 31, 21, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    opacity: 0;
    animation: slideUp 1s ease forwards 0.3s;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge p {
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: normal;
    color: var(--primary-gold);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    opacity: 0;
    animation: slideUp 1s ease forwards 0.6s;
}

.stats-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.stats-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-white);
    line-height: 1;
}

.stat-number span {
    font-size: 1rem;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: var(--primary-gold);
    color: var(--primary-charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1.5px solid rgba(201, 169, 98, 0.5);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(201, 169, 98, 0.15);
    border-color: var(--primary-gold);
}

/* ===== QUICK LINKS ===== */
.quick-links {
    padding: 0 4rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.quick-link-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.15);
    border-color: var(--primary-gold);
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-cream), var(--primary-white));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-bronze));
}

.quick-link-card:hover .quick-link-icon svg {
    stroke: var(--primary-white);
}

.quick-link-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-bronze);
    stroke-width: 1.5;
    fill: none;
}

.quick-link-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 0.5rem;
}

.quick-link-card p {
    font-size: 0.8rem;
    color: var(--primary-coffee);
    opacity: 0.7;
}

/* ===== SECTION COMMON ===== */
section {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--primary-coffee);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ===== PAGE HERO (Sub Pages) ===== */
.page-hero {
    padding: 10rem 4rem 5rem;
    background: linear-gradient(135deg, var(--primary-charcoal), var(--primary-brown));
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.page-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb span {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.breadcrumb .current {
    color: var(--primary-gold);
    font-weight: 500;
}

.page-hero h1 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
}

/* ===== SUB NAVIGATION ===== */
.sub-nav {
    background: var(--primary-white);
    border-bottom: 1px solid var(--primary-cream);
    position: sticky;
    top: 76px;
    z-index: 100;
}

.sub-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    gap: 0;
}

.sub-nav a {
    padding: 1.2rem 2rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-coffee);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.sub-nav a:hover {
    color: var(--primary-gold);
    background: var(--primary-cream);
}

.sub-nav a.active {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}

/* ===== NOTICE SECTION ===== */
.notice-section {
    background: var(--primary-cream);
    padding: 6rem 4rem;
    max-width: none;
}

.notice-container {
    max-width: 1400px;
    margin: 0 auto;
}

.notice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.notice-box {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.notice-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--primary-cream);
}

.notice-box-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-charcoal);
}

.notice-box-header a {
    font-size: 0.8rem;
    color: var(--primary-bronze);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.notice-box-header a:hover {
    color: var(--primary-gold);
}

.notice-list {
    list-style: none;
}

.notice-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.notice-list a {
    text-decoration: none;
    color: var(--primary-charcoal);
    font-size: 0.95rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.notice-list a:hover {
    color: var(--primary-gold);
}

.notice-list .date {
    font-size: 0.8rem;
    color: var(--primary-bronze);
    opacity: 0.7;
    flex-shrink: 0;
}

.notice-list .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    background: var(--primary-gold);
    color: var(--primary-charcoal);
    border-radius: 4px;
    font-weight: 600;
    flex-shrink: 0;
}

/* ===== PROGRAMS SECTION ===== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid var(--primary-cream);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.15);
}

.program-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-brown), var(--primary-coffee));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.program-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}

.program-image .icon {
    font-size: 4rem;
    opacity: 0.3;
}

.program-content {
    padding: 1.8rem;
}

.program-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 0.8rem;
}

.program-content p {
    font-size: 0.9rem;
    color: var(--primary-coffee);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.program-link:hover {
    gap: 0.8rem;
}

/* ===== STARTUP SECTION ===== */
.startup-section {
    background: linear-gradient(135deg, var(--primary-charcoal), var(--primary-brown));
    padding: 6rem 4rem;
    max-width: none;
}

.startup-container {
    max-width: 1400px;
    margin: 0 auto;
}

.startup-section .section-header h2 {
    color: var(--primary-white);
}

.startup-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.startup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.startup-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.startup-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.startup-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.startup-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-white);
    stroke-width: 1.5;
    fill: none;
}

.startup-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.startup-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text h3 em {
    color: var(--primary-gold);
    font-style: italic;
}

.about-text p {
    font-size: 1rem;
    color: var(--primary-coffee);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-stat {
    padding: 1.5rem;
    background: var(--primary-cream);
    border-radius: 12px;
    text-align: center;
}

.about-stat .number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    line-height: 1;
}

.about-stat .number span {
    font-size: 1.2rem;
}

.about-stat .label {
    font-size: 0.85rem;
    color: var(--primary-coffee);
    margin-top: 0.5rem;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-brown), var(--primary-coffee));
}

.about-image::before {
    content: 'KCBSEA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    letter-spacing: 0.1em;
}

/* ===== GREETING PAGE ===== */
.content-section {
    padding: 5rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.greeting-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 5rem;
    align-items: start;
}

.greeting-text {
    order: 1;
}

.greeting-title {
    margin-bottom: 3rem;
}

.greeting-title .label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
    display: block;
}

.greeting-title h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--primary-charcoal);
    line-height: 1.4;
}

.greeting-title h2 em {
    font-style: normal;
    color: var(--primary-gold);
}

.greeting-body {
    font-size: 1.05rem;
    color: var(--primary-coffee);
    line-height: 2;
}

.greeting-body p {
    margin-bottom: 2rem;
}

.greeting-body p:last-of-type {
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-cream), rgba(245, 240, 232, 0.5));
    border-left: 4px solid var(--primary-gold);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    border-radius: 0 16px 16px 0;
}

.highlight-box p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-charcoal);
    line-height: 1.8;
    margin-bottom: 0;
}

.signature {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--primary-cream);
    text-align: right;
}

.signature .org {
    font-size: 0.9rem;
    color: var(--primary-bronze);
    margin-bottom: 0.5rem;
}

.signature .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-charcoal);
}

.signature .position {
    font-size: 0.95rem;
    color: var(--primary-coffee);
    margin-top: 0.3rem;
}

/* Sidebar */
.greeting-sidebar {
    order: 2;
    position: sticky;
    top: 150px;
}

.sidebar-card {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--primary-cream);
}

.sidebar-image {
    height: 280px;
    background: url('images/coffee01.png') center/cover no-repeat;
    position: relative;
}

.sidebar-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}

.sidebar-content {
    padding: 2rem;
}

.sidebar-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 1rem;
}

.sidebar-content p {
    font-size: 0.9rem;
    color: var(--primary-coffee);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sidebar-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sidebar-stat {
    text-align: center;
    padding: 1rem;
    background: var(--primary-cream);
    border-radius: 12px;
}

.sidebar-stat .number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.sidebar-stat .label {
    font-size: 0.75rem;
    color: var(--primary-coffee);
    margin-top: 0.3rem;
}

/* Values Section */
.values-section {
    background: var(--primary-cream);
    padding: 5rem 4rem;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header .label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
}

.values-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-charcoal);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--primary-coffee);
    line-height: 1.7;
}

/* ===== HISTORY PAGE ===== */
.history-section {
    padding: 5rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.history-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.history-intro .label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
    display: block;
}

.history-intro h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 1rem;
}

.history-intro p {
    font-size: 1.05rem;
    color: var(--primary-coffee);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--primary-bronze));
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border: 4px solid var(--primary-white);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.2);
    z-index: 1;
}

.timeline-item.highlight .timeline-dot {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-bronze));
    box-shadow: 0 0 0 6px rgba(201, 169, 98, 0.3);
}

.timeline-content {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--primary-cream);
    max-width: 500px;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.12);
    border-color: var(--primary-gold);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-left-color: var(--primary-cream);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-right-color: var(--primary-cream);
}

.timeline-content:hover::before {
    border-left-color: var(--primary-gold);
    border-right-color: var(--primary-gold);
}

.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 1rem;
}

.timeline-events {
    list-style: none;
}

.timeline-events li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--primary-coffee);
    line-height: 1.6;
}

.timeline-events li:last-child {
    margin-bottom: 0;
}

.timeline-events li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--primary-bronze);
    border-radius: 50%;
}

.timeline-events li strong {
    color: var(--primary-charcoal);
}

.timeline-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(201, 169, 98, 0.15);
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* History Stats */
.history-stats {
    background: linear-gradient(135deg, var(--primary-charcoal), var(--primary-brown));
    border-radius: 24px;
    padding: 4rem;
    margin-top: 5rem;
    text-align: center;
}

.history-stats h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 3rem;
}

.history-stats h3 em {
    color: var(--primary-gold);
    font-style: italic;
}

/* ===== ORGANIZATION PAGE ===== */
.org-section {
    padding: 5rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.org-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.org-intro .label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
    display: block;
}

.org-intro h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 1rem;
}

.org-intro p {
    font-size: 1.05rem;
    color: var(--primary-coffee);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Organization Chart */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    width: 100%;
}

.org-level-1::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    width: 2px;
    height: 2rem;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.org-level-2 {
    position: relative;
}

.org-level-2::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 2px;
    height: 2rem;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.org-level-2::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    width: 2px;
    height: 2rem;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.org-level-3 {
    position: relative;
}

.org-level-3::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 2px;
    height: 2rem;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.org-level-3::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    width: 2px;
    height: 2rem;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.org-level-4 {
    position: relative;
}

.org-level-4::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 60%;
    height: 2px;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.org-level-5 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1100px;
    position: relative;
}

.org-level-5::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: var(--primary-gold);
}

/* Organization Cards */
.org-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--primary-cream);
    transition: all 0.3s ease;
    position: relative;
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.12);
    border-color: var(--primary-gold);
}

.org-card.chairman {
    background: linear-gradient(135deg, var(--primary-charcoal), var(--primary-brown));
    border: none;
    padding: 2rem 3rem;
    min-width: 280px;
}

.org-card.chairman .org-position {
    color: var(--primary-gold);
}

.org-card.chairman .org-name {
    color: var(--primary-white);
}

.org-card.chairman .org-desc {
    color: rgba(255,255,255,0.6);
}

.org-card.vice {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-bronze));
    border: none;
    min-width: 240px;
}

.org-card.vice .org-position {
    color: var(--primary-white);
}

.org-card.vice .org-name {
    color: var(--primary-white);
}

.org-card.vice .org-desc {
    color: rgba(255,255,255,0.8);
}

.org-card.secretary {
    min-width: 220px;
    background: var(--primary-cream);
}

.org-card.department {
    position: relative;
}

.org-card.department::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 2px;
    height: 2rem;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.org-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-cream), var(--primary-white));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.org-card.chairman .org-avatar {
    background: rgba(255,255,255,0.1);
    width: 80px;
    height: 80px;
}

.org-card.vice .org-avatar {
    background: rgba(255,255,255,0.2);
}

.org-position {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.org-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 0.5rem;
}

.org-desc {
    font-size: 0.85rem;
    color: var(--primary-coffee);
    opacity: 0.8;
}

/* Department Cards */
.dept-card {
    background: var(--primary-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--primary-cream);
    transition: all 0.3s ease;
}

.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.12);
    border-color: var(--primary-gold);
}

.dept-header {
    background: linear-gradient(135deg, var(--primary-coffee), var(--primary-brown));
    padding: 1.2rem;
    text-align: center;
}

.dept-header h4 {
    color: var(--primary-white);
    font-size: 1rem;
    font-weight: 600;
}

.dept-header span {
    color: var(--primary-gold);
    font-size: 0.75rem;
}

.dept-members {
    padding: 1rem;
}

.dept-member {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.dept-member:hover {
    background: var(--primary-cream);
}

.dept-member-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-cream), var(--primary-white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.dept-member-info {
    flex: 1;
}

.dept-member-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-charcoal);
}

.dept-member-role {
    font-size: 0.75rem;
    color: var(--primary-bronze);
}

/* Organization Summary */
.org-summary {
    margin-top: 5rem;
    background: var(--primary-cream);
    border-radius: 24px;
    padding: 3rem;
}

.org-summary h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 2rem;
}

.org-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.org-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-white);
    border-radius: 16px;
}

.org-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
}

.org-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.org-stat-label {
    font-size: 0.9rem;
    color: var(--primary-coffee);
    margin-top: 0.3rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand .subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: var(--primary-gold);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.6);
}

.social-links a:hover svg {
    fill: var(--primary-charcoal);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    header {
        padding: 1rem 2rem;
    }

    header.scrolled {
        padding: 0.9rem 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 7rem 2rem 4rem;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-stats {
        order: 2;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .quick-links {
        padding: 0 2rem;
    }

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

    section {
        padding: 4rem 2rem;
    }

    .page-hero {
        padding: 8rem 2rem 4rem;
    }

    .sub-nav-inner {
        padding: 0 2rem;
        overflow-x: auto;
    }

    .sub-nav a {
        padding: 1rem 1.5rem;
        white-space: nowrap;
    }

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

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

    .startup-section {
        padding: 4rem 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
        order: -1;
    }

    .content-section {
        padding: 4rem 2rem;
    }

    .greeting-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .greeting-sidebar {
        order: -1;
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .values-section {
        padding: 4rem 2rem;
    }

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

    .history-section {
        padding: 4rem 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        max-width: 100%;
    }

    .timeline-content::before,
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -20px;
        right: auto;
        border-left-color: transparent;
        border-right-color: var(--primary-cream);
    }

    .history-stats {
        padding: 3rem 2rem;
    }

    .org-section {
        padding: 4rem 2rem;
    }

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

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

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

@media (max-width: 768px) {
    /* 헤더 모바일 */
    header {
        padding: 0.8rem 1rem;
        background: rgba(254, 253, 251, 0.97);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(139, 111, 71, 0.1);
    }

    header.scrolled {
        padding: 0.8rem 1rem;
    }

    /* 모바일에서 로고 색상 고정 */
    header .logo-title {
        color: var(--primary-charcoal);
    }

    header .logo-subtitle {
        color: var(--primary-bronze);
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 0.6rem;
    }

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

    .logo-subtitle {
        font-size: 0.6rem;
    }

    /* 네비게이션 모바일 - 기본 숨김 */
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 22, 18, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 999;
        padding-top: 70px;
        padding-bottom: 30px;
        overflow-y: auto;
    }

    nav.mobile-open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
        max-width: 400px;
        padding: 0 1rem;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links > li > a {
        display: block;
        padding: 0.85rem 1rem;
        font-size: 1rem;
        color: var(--primary-white) !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.3);
        box-shadow: none;
        display: none;
        padding: 0;
        border-radius: 0;
    }

    .dropdown.show {
        display: block;
    }

    .nav-links li:hover .dropdown,
    .nav-links li:focus-within .dropdown {
        display: block;
    }

    .dropdown a {
        color: var(--primary-cream) !important;
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }

    .dropdown a:hover {
        padding-left: 1rem;
    }

    .header-cta {
        display: none;
    }

    /* 메뉴 토글 버튼 */
    .menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .menu-toggle span {
        background: var(--primary-charcoal);
    }

    .menu-toggle.active span {
        background: var(--primary-white);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* 히어로 모바일 */
    .hero {
        min-height: 100vh;
        padding: 0;
    }

    .hero-content {
        padding: 100px 1.5rem 2rem;
        flex-direction: column;
        gap: 2rem;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .hero-stats {
        width: 100%;
    }

    .stats-card {
        padding: 1.5rem;
    }

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

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* 페이지 히어로 모바일 */
    .page-hero {
        padding: 100px 1.5rem 3rem;
        min-height: auto;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* 서브 네비게이션 모바일 */
    .sub-nav {
        top: 58px;
        padding: 0 1rem;
    }

    .sub-nav-inner {
        gap: 0.3rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .sub-nav a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* 퀵링크 모바일 */
    .quick-links {
        margin-top: -30px;
        padding: 0 1rem;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .quick-link-card {
        padding: 1.2rem 0.8rem;
    }

    .quick-link-icon {
        width: 40px;
        height: 40px;
    }

    .quick-link-icon svg {
        width: 20px;
        height: 20px;
    }

    .quick-link-card h4 {
        font-size: 0.85rem;
    }

    .quick-link-card p {
        font-size: 0.7rem;
    }

    /* 공지사항 섹션 모바일 */
    .notice-section {
        padding: 3rem 1rem;
    }

    .notice-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .notice-box {
        padding: 1.5rem;
    }

    .notice-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .notice-list .date {
        margin-left: 0;
    }

    /* 프로그램 섹션 모바일 */
    .programs-section {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .program-card {
        flex-direction: row;
        gap: 1rem;
    }

    .program-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .program-content h4 {
        font-size: 1rem;
    }

    .program-content p {
        font-size: 0.85rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* 창업지원 섹션 모바일 */
    .startup-section {
        padding: 3rem 0;
    }

    .startup-container {
        padding: 0 1rem;
    }

    .startup-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .startup-card {
        padding: 1.5rem;
    }

    /* 어바웃 섹션 모바일 */
    .about-section {
        padding: 3rem 1rem;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-text {
        padding: 0;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-image {
        height: 250px;
        border-radius: 16px;
    }

    /* 콘텐츠 섹션 모바일 */
    .content-section {
        padding: 3rem 1rem;
    }

    .greeting-content {
        flex-direction: column;
        gap: 2rem;
    }

    .greeting-text {
        padding-right: 0;
    }

    .greeting-title h2 {
        font-size: 1.4rem;
    }

    .greeting-body p {
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 1.2rem;
    }

    .signature {
        padding: 1.5rem;
    }

    .greeting-sidebar {
        order: -1;
        position: static;
        max-width: 100%;
        margin: 0;
    }

    .sidebar-card {
        padding: 1.5rem;
    }

    .sidebar-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    /* 핵심가치 섹션 모바일 */
    .values-section {
        padding: 3rem 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    /* 연혁 섹션 모바일 */
    .history-section {
        padding: 3rem 1rem;
    }

    .history-intro h2 {
        font-size: 1.5rem;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 15px;
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        max-width: 100%;
        padding: 1.5rem;
    }

    .timeline-content::before,
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -15px;
        right: auto;
        border-left-color: transparent;
        border-right-color: var(--primary-cream);
    }

    .timeline-year {
        font-size: 1.8rem;
    }

    .timeline-title {
        font-size: 1rem;
    }

    .timeline-events li {
        font-size: 0.85rem;
    }

    .history-stats {
        padding: 2rem 1.5rem;
        margin: 3rem 0 0;
    }

    .history-stats h3 {
        font-size: 1.3rem;
    }

    .history-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* 조직도 섹션 모바일 */
    .org-section {
        padding: 3rem 1rem;
    }

    .org-intro h2 {
        font-size: 1.5rem;
    }

    .org-chart {
        padding: 1.5rem 0;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .org-card {
        padding: 1.2rem;
        min-width: 200px;
    }

    .org-card.chairman,
    .org-card.vice,
    .org-card.secretary {
        min-width: 220px;
    }

    .org-level-4 {
        height: 30px;
    }

    .org-level-4::before,
    .org-level-5::before {
        display: none;
    }

    .org-level-5 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dept-card {
        padding: 1.5rem;
    }

    .dept-card::before {
        display: none;
    }

    .org-summary {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .org-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* 푸터 모바일 */
    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand h3 {
        font-size: 1.1rem;
    }

    .footer-links h4 {
        font-size: 0.95rem;
    }

    .footer-links ul {
        gap: 0.5rem;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* 아주 작은 화면 (480px 이하) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.4rem;
    }

    .quick-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .quick-link-card {
        padding: 1rem 0.6rem;
    }

    .quick-link-card h4 {
        font-size: 0.8rem;
    }

    .stats-grid {
        gap: 0.8rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .about-stats .number,
    .sidebar-stat .number {
        font-size: 1.3rem;
    }

    .program-card {
        flex-direction: column;
    }

    .program-image {
        width: 100%;
        height: 120px;
    }

    .timeline-content {
        padding: 1.2rem;
    }

    .org-card {
        min-width: 180px;
    }
}

/* 모바일 드롭다운 show 상태 */
@media (max-width: 768px) {
    .dropdown.show {
        display: block !important;
    }
}
