
@font-face {
    font-family: 'Escoredream';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}


/* ===== CSS Variables ===== */
:root {
    --primary: #d50080;
    --primary-light: #ff1493;
    --primary-dark: #a30062;
    --primary-glow: rgba(213, 0, 128, 0.25);
    --secondary: #1a1a2e;
    --secondary-light: #252542;
    --accent: #ff6b9d;
    --accent-soft: #ffb3d0;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-pink: #fff5f9;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #8a8a9a;
    --font: 'Escoredream', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-glow: 0 8px 40px var(--primary-glow);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s var(--ease);
}
.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(213,0,128,0.1), var(--shadow-sm);
    padding: 0.75rem 3rem;
}
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.25s var(--ease);
}
.nav-link:hover { color: var(--primary); background: var(--bg-pink); }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s var(--ease);
    z-index: 1000;
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--bg-white);
    border-radius: 2px;
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all 0.2s var(--ease);
}
.nav-dropdown a:hover {
    background: linear-gradient(135deg, var(--bg-pink), rgba(213,0,128,0.08));
    color: var(--primary);
    padding-left: 18px;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.40rem 1.0rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--primary-glow);
}
.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-ghost { 
    background: white; 
    color: var(--primary); 
    border: 2px solid var(--primary); 
    padding: 1rem 2rem; 
    box-shadow: var(--shadow-sm); 
}
.btn-ghost:hover { 
    background: var(--primary); 
    color: white; 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-glow); 
}
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ===== HEADER UTILS ===== */
.header-utils { display: flex; align-items: center; gap: 1rem; margin-left: 0.5rem; }
.lang-select select {
    appearance: none;
    background: var(--bg-pink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23d50080'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid rgba(213,0,128,0.2);
    border-radius: var(--radius-sm);
    padding: 8px 32px 8px 14px;
    font-size: 0.8rem;
    font-family: var(--font);
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.lang-select select:hover { border-color: var(--primary); background-color: rgba(213,0,128,0.08); }
.sns-links { display: flex; gap: 4px; }
.sns-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-pink);
    color: var(--primary);
    transition: all 0.25s var(--ease);
}
.sns-links a:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.sns-links svg { width: 16px; height: 16px; }
.menu-toggle { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    cursor: pointer; 
    padding: 8px;
    z-index: 1001;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s var(--ease); }
.menu-toggle.active { opacity: 0; pointer-events: none; }

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    z-index: 1100;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 1101;
    transition: right 0.4s var(--ease);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-menu.active { right: 0; }
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: var(--bg-pink);
}
.mobile-menu-logo { display: flex; align-items: center; }
.mobile-menu-logo img { height: 32px; width: auto; }
.mobile-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    background: white;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    transition: all 0.25s var(--ease);
}
.mobile-menu-close:hover { background: var(--primary); color: white; }
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-menu-nav { flex: 1; padding: 1rem 0; }
.mobile-nav-item { border-bottom: 1px solid rgba(0,0,0,0.04); }
.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.25s var(--ease);
}
.mobile-nav-link:hover { background: var(--bg-pink); color: var(--primary); }
.mobile-nav-link.active { color: var(--primary); background: var(--bg-pink); }
.mobile-nav-arrow { width: 20px; height: 20px; color: var(--text-muted); transition: transform 0.3s var(--ease); }
.mobile-nav-item.open .mobile-nav-arrow { transform: rotate(180deg); color: var(--primary); }
.mobile-nav-dropdown {
    max-height: 0;
    overflow: hidden;
    background: var(--bg-light);
    transition: max-height 0.4s var(--ease);
}
.mobile-nav-item.open .mobile-nav-dropdown { max-height: 500px; }
.mobile-nav-dropdown a {
    display: block;
    padding: 0.875rem 1.5rem 0.875rem 2.5rem;
    font-size: 0.875rem;
    color: var(--text-body);
    border-top: 1px solid rgba(0,0,0,0.04);
    transition: all 0.25s var(--ease);
}
.mobile-nav-dropdown a:hover { background: rgba(213,0,128,0.05); color: var(--primary); padding-left: 3rem; }
.mobile-nav-dropdown a.active { color: var(--primary); font-weight: 600; background: rgba(213,0,128,0.08); }
.mobile-menu-footer { padding: 1.5rem; border-top: 1px solid rgba(0,0,0,0.06); background: var(--bg-light); }
.mobile-menu-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s var(--ease);
}
.mobile-menu-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--primary-glow); }
.mobile-menu-utils { display: flex; flex-direction: column; gap: 1rem; }
.mobile-lang-select select {
    appearance: none;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23d50080'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid rgba(213,0,128,0.2);
    border-radius: var(--radius-sm);
    padding: 8px 32px 8px 14px;
    font-size: 0.8rem;
    font-family: var(--font);
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
}
.mobile-sns-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.mobile-sns-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: white;
    color: var(--primary);
    transition: all 0.25s var(--ease);
    flex-shrink: 0;
}
.mobile-sns-links a:hover { background: var(--primary); color: white; }
.mobile-sns-links svg { width: 18px; height: 18px; }

/* ===== SITEMAP MODAL ===== */
.sitemap-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-pink);
    border: 1px solid rgba(213,0,128,0.15);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.25s var(--ease);
    margin-left: 0.5rem;
}
.sitemap-btn:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.sitemap-btn svg { width: 20px; height: 20px; }
.sitemap-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    z-index: 2000;
    overflow-y: auto;
}
.sitemap-overlay.active { opacity: 1; visibility: visible; }
.sitemap-container { max-width: 1600px; margin: 0 auto; padding: 6rem 3rem 4rem; min-height: 100vh; }
.sitemap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sitemap-logo { height: 40px; filter: brightness(0) invert(1); }
.sitemap-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.sitemap-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}
.sitemap-close {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s var(--ease);
}
.sitemap-close:hover { background: var(--primary); border-color: var(--primary); transform: rotate(90deg); }
.sitemap-close svg { width: 24px; height: 24px; }
.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.sitemap-column {
    opacity: 0;
    transform: translateY(30px);
    animation: sitemapFadeIn 0.6s var(--ease) forwards;
}
.sitemap-column:nth-child(1) { animation-delay: 0.1s; }
.sitemap-column:nth-child(2) { animation-delay: 0.15s; }
.sitemap-column:nth-child(3) { animation-delay: 0.2s; }
.sitemap-column:nth-child(4) { animation-delay: 0.25s; }
.sitemap-column:nth-child(5) { animation-delay: 0.3s; }
.sitemap-column:nth-child(6) { animation-delay: 0.35s; }
.sitemap-column:nth-child(7) { animation-delay: 0.4s; }
.sitemap-column:nth-child(8) { animation-delay: 0.45s; }
@keyframes sitemapFadeIn { to { opacity: 1; transform: translateY(0); } }
.sitemap-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.sitemap-column-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sitemap-column-icon svg { width: 18px; height: 18px; color: white; }
.sitemap-links { display: flex; flex-direction: column; gap: 0.25rem; }
.sitemap-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.25s var(--ease);
    position: relative;
}
.sitemap-link::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s var(--ease);
}
.sitemap-link:hover { background: rgba(255,255,255,0.05); color: white; padding-left: 1.5rem; }
.sitemap-link:hover::before { opacity: 1; transform: scale(1); }
.sitemap-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sitemap-footer-info { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.sitemap-footer-info a { color: var(--primary); transition: color 0.25s; }
.sitemap-footer-info a:hover { color: var(--primary-light); }
.sitemap-footer-social { display: flex; gap: 0.75rem; }
.sitemap-footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s var(--ease);
}
.sitemap-footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.sitemap-footer-social svg { width: 20px; height: 20px; }

/* ===== FOOTER ===== */
.footer { background: var(--secondary); color: white; }
.footer-content { max-width: 1600px; margin: 0 auto; }

/* Footer Menu */
.footer-menu {
    display: grid;
    grid-template-columns: 1.5fr repeat(7, 1fr);
    gap: 1.5rem;
    padding: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { max-width: 240px; }
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-column h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.875rem; color: white; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color 0.25s; }
.footer-links a:hover { color: white; }

/* Newsletter */
.footer-newsletter {
    padding: 2rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.newsletter-inner { text-align: center; }
.newsletter-text { margin-bottom: 1rem; }
.newsletter-text h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
}
.newsletter-text p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}
.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.newsletter-code {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}
.newsletter-input {
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 0.8rem;
    font-family: var(--font);
    width: 120px;
    transition: all 0.25s var(--ease);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--primary); outline: none; background: rgba(255,255,255,0.1); }
.newsletter-input-email { width: 180px; }
.newsletter-btn {
    padding: 0.5rem 1.25rem;
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.newsletter-btn:hover { background: white; color: var(--secondary); }
.newsletter-link-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.25s var(--ease);
}
.newsletter-link-btn:hover { background: var(--primary-light); }

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0rem;
}

/* Partners & SNS Row */
.footer-partners-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-partners {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-partners img {
    height: 32px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.25s;
}
.footer-partners img:hover { opacity: 1; }
.footer-partners .security-seal {
    height: 28px;
    opacity: 1;
}
.footer-social {
    display: flex;
    gap: 0.4rem;
}
.footer-social a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-social svg { width: 16px; height: 16px; }

/* Secretariat */
.footer-secretariat {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}
.footer-secretariat strong { color: white; font-weight: 600; }
.footer-secretariat a { color: var(--primary); }
.footer-secretariat a:hover { text-decoration: underline; }

/* Copyright Area */
.footer-copyright-area {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-business {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.5rem;
}
.footer-copyright {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE (Common) ===== */
/* 중간 해상도(내비 노출 ~1025~1400px): 상단 메뉴가 줄바꿈되지 않도록 폰트·간격 축소 */
@media (max-width: 1400px) {
    .header { padding: 1rem 1.5rem; }
    .header.scrolled { padding: 0.75rem 1.5rem; }
    .nav { gap: 0.05rem; }
    .nav-link { font-size: 0.8rem; padding: 0.5rem 0.6rem; white-space: nowrap; }
    .header-utils { gap: 0.6rem; margin-left: 0.25rem; }
}
@media (max-width: 1280px) {
    .header { padding: 0.9rem 1.25rem; }
    .nav { gap: 0; }
    .nav-link { font-size: 0.72rem; padding: 0.45rem 0.45rem; }
    .header-utils { gap: 0.45rem; }
}

@media (max-width: 1200px) {
    .footer-menu {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    .footer-brand .footer-desc { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 1024px) {
    .header { padding: 1rem 2rem; }
    .nav { display: none; }
    .header-utils { display: none; }
    .menu-toggle { display: flex; }
    .sitemap-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .sitemap-container { padding: 5rem 2rem 3rem; }
    .sitemap-btn { display: none; }
    .footer-menu { padding: 2rem; }
    .footer-newsletter { padding: 1.5rem 2rem; }
    .footer-bottom { padding: 1.5rem 2rem; }
}
@media (max-width: 768px) {
    .header { padding: 0.875rem 1.5rem; }
    .logo img { height: 32px; }
    .sitemap-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .sitemap-container { padding: 4rem 1.5rem 2rem; }
    .sitemap-header { margin-bottom: 2rem; }
    .sitemap-close { width: 44px; height: 44px; }
    .sitemap-column-title { font-size: 1rem; margin-bottom: 1rem; }
    .sitemap-footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-menu {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1rem;
    }
    .footer-column h4 { font-size: 0.8rem; margin-bottom: 0.65rem; }
    .footer-links a { font-size: 0.75rem; }
    .footer-newsletter { padding: 1.25rem 1.5rem; }
    .newsletter-form { flex-direction: column; gap: 0.5rem; }
    .newsletter-input, .newsletter-input-email { width: 100%; max-width: 240px; }
    .footer-bottom { padding: 1.25rem 1.5rem; }
    .footer-partners-row { flex-direction: column; text-align: center; }
    .footer-partners { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-secretariat { font-size: 0.7rem; }
}
