/* ========================================
   Lukáš Hájek 2026 - Landing Page
   SLK Visual Identity
   ======================================== */

:root {
    /* SLK Colors */
    --pink: #e91e8c;
    --pink-light: #ff6eb4;
    --pink-dark: #c4167a;
    --pink-bg: #fdf2f8;
    --purple: #3d2352;
    --purple-light: #5a3875;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.highlight {
    color: var(--pink);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.btn-primary:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--pink);
    border-color: var(--pink);
}

.btn-outline:hover {
    background: var(--pink);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    position: relative;
    z-index: 10;
}

.nav-logo img {
    height: 100px;
    width: auto;
    margin-top: 30px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--pink);
}

.nav-social {
    display: flex;
    gap: 16px;
}

.nav-social a {
    color: var(--gray-500);
    transition: var(--transition);
}

.nav-social a:hover {
    color: var(--pink);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--pink-bg) 50%, var(--white) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.6) 100%);
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.hero-badge-year {
    background: var(--purple);
    color: var(--white);
}

.hero-badge-claim {
    background: var(--pink);
    color: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-label {
    display: inline-block;
    background: var(--pink-bg);
    color: var(--pink);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-photo {
    position: relative;
}

.hero-photo img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-photo-badge {
    position: absolute;
    top: 10px;
    right: 35px;
    background: linear-gradient(135deg, var(--pink) 0%, #ff6b9d 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.35);
    border: 3px solid var(--white);
    transform: rotate(3deg);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   Sections
   ======================================== */

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-light .section-title {
    color: var(--white);
}

.section-header-light .section-line {
    background: var(--white);
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--pink);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* About Section */
.section-about {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--purple);
}

.about-role {
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 24px;
}

.about-bio {
    margin-bottom: 40px;
}

.about-bio p {
    margin-bottom: 16px;
    color: var(--gray-600);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

/* Video Section */
.section-video {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    color: var(--white);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.video-container iframe,
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-900);
    cursor: pointer;
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.video-play-btn {
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-caption {
    text-align: center;
    margin-top: 24px;
    opacity: 0.8;
}

/* Investice Section */
.section-investice {
    background: var(--white);
}

.investice-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
}

.investice-map-wrapper {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.investice-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.investice-cta {
    text-align: center;
    margin-top: 32px;
}

/* Priorities Section */
.section-priorities {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
}

.priorities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.priority-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.priority-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.priority-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.priority-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--purple);
}

.priority-card p {
    font-size: 14px;
    color: var(--gray-600);
}

/* Social Section */
.section-social {
    background: var(--gray-50);
}

.social-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.social-column h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--gray-700);
}

.social-embed {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-placeholder {
    text-align: center;
    padding: 40px;
}

.social-placeholder p {
    margin-bottom: 16px;
    color: var(--gray-500);
}

/* Kandidatura Section */
.section-kandidatura {
    background: var(--gray-50);
}

.kandidatura-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.kandidatura-content h2 {
    margin-bottom: 40px;
}

.kandidatura-content blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
    border-left: 4px solid var(--pink);
    padding-left: 30px;
    margin: 0;
    text-align: left;
}

.kandidatura-content blockquote p {
    margin-bottom: 20px;
}

.kandidatura-content blockquote p:last-child {
    margin-bottom: 0;
    color: var(--purple);
}

/* Contact Section */
.section-contact {
    background: var(--purple);
    color: var(--white);
    text-align: center;
}

.contact-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-content p {
    opacity: 0.8;
    margin-bottom: 32px;
    font-size: 1.125rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 14px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--pink);
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-social-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social-links a:hover {
    color: var(--pink);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-slk a {
    color: var(--pink);
    text-decoration: none;
}

/* ========================================
   Social Feed - Masonry Grid
   ======================================== */

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 40px;
    font-size: 1.125rem;
}

/* Filter Tabs */
.social-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.social-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.social-filter-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.social-filter-btn.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.social-filter-btn.active svg {
    fill: var(--white);
}

/* Masonry Grid */
.social-masonry {
    column-count: 3;
    column-gap: 24px;
}

/* Individual Post Card */
.social-post {
    break-inside: avoid;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.social-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.social-post-fb {
    border-top: 3px solid #1877f2;
}

.social-post-ig {
    border-top: 3px solid #e4405f;
}

/* Post Header */
.social-post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.social-post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.social-post-meta {
    flex: 1;
}

.social-post-author {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-900);
}

.social-post-date {
    font-size: 12px;
    color: var(--gray-400);
}

.social-post-icon {
    flex-shrink: 0;
}

/* Post Content */
.social-post-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
    object-fit: cover;
}

.social-post-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.social-post-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--pink);
    text-decoration: none;
    transition: var(--transition);
}

.social-post-link:hover {
    color: var(--pink-dark);
}

/* Social CTA */
.social-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-cta .btn svg {
    flex-shrink: 0;
}

/* ========================================
   Social Feeds Grid (FB + IG)
   ======================================== */

.social-feeds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.social-feed-column {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.social-feed-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    font-weight: 700;
    font-size: 16px;
    color: var(--gray-800);
}

.social-feed-embed {
    min-height: 600px;
}

.social-feed-embed iframe {
    display: block;
    width: 100%;
}

/* Instagram Placeholder Grid */
.ig-placeholder {
    padding: 20px;
}

.ig-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.ig-placeholder-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.ig-placeholder-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ig-placeholder-item:hover img {
    transform: scale(1.05);
}

.ig-placeholder-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ig-placeholder-item:hover .ig-placeholder-overlay {
    opacity: 1;
}

.ig-follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ig-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.35);
}

.ig-placeholder-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
}

.ig-placeholder-note a {
    color: var(--pink);
    text-decoration: none;
}

.ig-placeholder-note a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .social-feeds-grid {
        grid-template-columns: 1fr;
    }
    
    .social-feed-embed {
        min-height: 500px;
    }
}

/* ========================================
   Curator.io Feed Styles
   ======================================== */

.curator-feed-wrapper {
    margin-bottom: 40px;
}

.curator-placeholder {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.curator-placeholder-header {
    text-align: center;
    padding: 40px 24px 30px;
    background: linear-gradient(135deg, var(--pink-bg) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--gray-200);
}

.curator-placeholder-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.curator-plus {
    font-size: 24px;
    font-weight: 300;
    color: var(--gray-400);
}

.curator-placeholder-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.curator-placeholder-header p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Curator Posts Grid */
.curator-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.curator-post {
    position: relative;
    border-right: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.curator-post:nth-child(3n) {
    border-right: none;
}

.curator-post:nth-last-child(-n+3) {
    border-bottom: none;
}

.curator-post:hover {
    z-index: 2;
}

.curator-post:hover .curator-post-img {
    transform: scale(1.05);
}

.curator-post-source {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.curator-post-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.curator-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.curator-post:hover .curator-post-content {
    opacity: 1;
}

.curator-post-content p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.curator-post-date {
    font-size: 11px;
    opacity: 0.8;
}

/* Setup Notice */
.curator-setup-notice {
    padding: 24px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.curator-setup-notice p {
    margin-bottom: 12px;
    color: var(--gray-700);
}

.curator-setup-notice ol {
    display: inline-block;
    text-align: left;
    font-size: 14px;
    color: var(--gray-600);
    padding-left: 20px;
}

.curator-setup-notice li {
    margin-bottom: 6px;
}

.curator-setup-notice a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
}

.curator-setup-notice a:hover {
    text-decoration: underline;
}

.curator-setup-notice code {
    background: var(--gray-200);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .curator-placeholder-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .curator-post:nth-child(3n) {
        border-right: 1px solid var(--gray-100);
    }
    
    .curator-post:nth-child(2n) {
        border-right: none;
    }
    
    .curator-post-content {
        opacity: 1;
        position: relative;
        background: var(--gray-50);
        color: var(--gray-800);
        padding: 12px;
    }
    
    .curator-post-date {
        color: var(--gray-500);
    }
}

@media (max-width: 480px) {
    .curator-placeholder-grid {
        grid-template-columns: 1fr;
    }
    
    .curator-post {
        border-right: none !important;
    }
}

/* ========================================
   Priority Icons SVG
   ======================================== */

.priority-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-bg);
    border-radius: 20px;
    color: var(--pink);
}

.priority-icon svg {
    width: 40px;
    height: 40px;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-photo {
        order: -1;
    }
    
    .hero-photo img {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-photo {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .priorities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-masonry {
        column-count: 2;
    }
    
    .social-feed {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-social {
        display: none;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .priorities-grid {
        grid-template-columns: 1fr;
    }
    
    .social-masonry {
        column-count: 1;
    }
    
    .social-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .investice-map-wrapper {
        height: 500px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .investice-map-wrapper {
        height: 400px;
        border-radius: 12px;
    }
}
