/* ============================================
   PRAWO NA LUZIE – Styl strony
   Estetyka: Editorial / Prawnicza / Ciepła
============================================ */

:root {
    --ink: #0d1b3e;
    --ink-soft: #3a4a6b;
    --paper: #f4f8ff;
    --paper-warm: #e8f0fc;
    --gold: #29abe2;
    --gold-light: #5dc8f5;
    --blue-main: #29abe2;
    --blue-dark: #0d7ab5;
    --blue-deep: #0d1b3e;
    --green: #1a7a4a;
    --red: #c03030;
    --border: #c5d8ef;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(13, 27, 62, 0.10);
    --shadow-lg: 0 8px 48px rgba(13, 27, 62, 0.16);
    --radius: 12px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--ink);
}
em { font-style: italic; }
p { color: var(--ink-soft); }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-main);
    margin-bottom: 12px;
}
.label.light { color: var(--gold-light); }

.header-social {
    display: flex;
    gap: 8px;
    align-items: center;
}
.header-social .social-label { display: none; }
@media (min-width: 1100px) {
    .header-social .social-label { display: inline; }
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244, 248, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--blue-main);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 10px;
    flex-shrink: 0;
    transition: background var(--transition);
    overflow: hidden;
    padding: 0;
}
.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.logo:hover .logo-mark { background: var(--blue-dark); }

.logo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    line-height: 1.3;
    font-weight: 300;
}
.logo-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.nav { display: flex; gap: 8px; }
.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all var(--transition);
}
.nav-link:hover { background: var(--paper-warm); color: var(--ink); }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    height: 2px;
    width: 24px;
    background: var(--ink);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--paper);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 12px 0;
    text-decoration: none;
    color: var(--ink);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    border: 2px solid var(--ink);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: white; transform: translateY(-2px); }
.btn-primary.light { background: var(--gold); border-color: var(--gold); }
.btn-primary.light:hover { background: white; color: var(--ink); border-color: white; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-outline.light { color: white; border-color: white; }
.btn-outline.light:hover { background: white; color: var(--ink); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b3e 0%, #0d7ab5 60%, #29abe2 100%);
    border-bottom: 1px solid var(--border);
}

.hero-bg { position: absolute; inset: 0; }
.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}
.c1 {
    width: 500px; height: 500px;
    background: #5dc8f5;
    top: -200px; right: -100px;
    animation-delay: 0s;
}
.c2 {
    width: 300px; height: 300px;
    background: white;
    bottom: -100px; left: 10%;
    animation-delay: 3s;
}
.c3 {
    width: 200px; height: 200px;
    background: #5dc8f5;
    top: 40%; right: 30%;
    animation-delay: 5s;
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

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

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1.0;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease 0.1s both;
    color: white;
}
.hero-title em {
    color: var(--gold-light);
    font-style: italic;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    animation: fadeUp 0.6s ease 0.2s both;
    line-height: 1.6;
}

.hero-stamp {
    position: absolute;
    bottom: 60px;
    right: 80px;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
    transform: rotate(-15deg);
    z-index: 2;
}

/* Hero logo image */
.hero-logo-img {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}

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

/* ===== ARTICLES ===== */
.articles-section { padding: 100px 0; }

.section-header {
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    max-width: 520px;
}
.section-header p,
.section-sub {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-top: 8px;
    max-width: 500px;
}

.about-teaser-simple {
    grid-template-columns: 1fr !important;
    max-width: 720px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.card {
    background: var(--card-bg, var(--paper-warm));
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-visual {
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.card-icon {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--card-accent);
    opacity: 0.5;
}

.card-cat {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--card-accent);
    background: rgba(255,255,255,0.7);
    padding: 4px 12px;
    border-radius: 50px;
}

.card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.card-date {
    font-size: 0.78rem;
    color: var(--ink-soft);
    opacity: 0.7;
    margin-bottom: 10px;
    display: block;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: var(--ink);
}

.card-excerpt {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--ink-soft);
    flex: 1;
    margin-bottom: 20px;
}

.card-link {
    color: var(--card-accent);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: opacity var(--transition);
}
.card-link:hover { opacity: 0.7; }

/* ===== DOWNLOAD SECTION ===== */
.download-section { padding: 60px 0; }

.download-box {
    background: var(--ink);
    border-radius: 20px;
    padding: 72px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.download-box::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gold);
    opacity: 0.07;
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.download-text .label.light { color: var(--gold-light); }
.download-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: white;
    margin-bottom: 16px;
}
.download-text p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.download-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.tile {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    transition: background var(--transition);
}
.tile:hover { background: rgba(255,255,255,0.14); }

/* ===== ABOUT TEASER ===== */
.about-teaser { padding: 100px 0; border-top: 1px solid var(--border); }

.about-teaser-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-teaser-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; }
.about-teaser-text p { margin-bottom: 32px; }

.about-teaser-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.stat {
    text-align: center;
    padding: 32px 16px;
    background: var(--paper-warm);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat span { font-size: 0.82rem; color: var(--ink-soft); }

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 100px 0 80px;
    background: var(--paper-warm);
    border-bottom: 1px solid var(--border);
}
.page-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin: 12px 0 20px;
}
.page-hero p { font-size: 1.2rem; max-width: 500px; }

/* ===== O NAS PAGE ===== */
.about-story { padding: 100px 0; }
.about-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.story-text h2 { font-size: 2.4rem; margin-bottom: 24px; }
.story-text p { margin-bottom: 20px; }

.story-quote {
    background: var(--ink);
    border-radius: var(--radius);
    padding: 48px;
}
.story-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    line-height: 1.5;
    font-style: italic;
}

.values-section { padding: 80px 0; background: var(--paper-warm); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; }

.team-section { padding: 100px 0; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.team-card {
    background: var(--paper-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.team-role {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.team-card p { font-size: 0.88rem; }

.join-section { padding: 80px 0; background: var(--paper-warm); border-top: 1px solid var(--border); }
.join-inner { text-align: center; }
.join-inner h2 { font-size: 2.4rem; margin-bottom: 16px; }
.join-inner p { margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== MATERIALS PAGE ===== */
.materials-section { padding: 80px 0; }
.materials-info {
    background: var(--paper-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 28px;
    margin-bottom: 48px;
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.material-card {
    background: var(--mat-bg, var(--paper-warm));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.mat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mat-icon { font-size: 2rem; }
.mat-cat {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mat-accent);
    background: rgba(255,255,255,0.7);
    padding: 4px 12px;
    border-radius: 50px;
}

.mat-title { font-size: 1.05rem; margin-bottom: 10px; }
.mat-desc { font-size: 0.86rem; color: var(--ink-soft); flex: 1; margin-bottom: 20px; }
.materials-single {
    max-width: 560px;
}
.material-card--featured {
    padding: 40px;
}
.material-card--featured .mat-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
}
.material-card--featured .mat-desc {
    font-size: 0.95rem;
}
.mat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mat-size { font-size: 0.78rem; color: var(--ink-soft); }

.btn-download {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--mat-accent, var(--ink));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    transition: all var(--transition);
}
.btn-download:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-download--big {
    padding: 14px 32px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.request-section { padding: 80px 0; background: var(--paper-warm); border-top: 1px solid var(--border); }
.request-inner { text-align: center; }
.request-inner h2 { font-size: 2rem; margin-bottom: 16px; }
.request-inner p { margin-bottom: 32px; }

/* ===== ARTICLE PAGE ===== */
.article-page { max-width: 100%; }

.article-hero {
    padding: 72px 0 56px;
}
.back-link {
    display: inline-block;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 24px;
    transition: opacity var(--transition);
}
.back-link:hover { opacity: 0.7; }

.article-cat {
    display: inline-block;
    padding: 4px 16px;
    color: white;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
}

.article-title { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 760px; }
.article-date { display: block; font-size: 0.85rem; color: var(--ink-soft); margin-top: 16px; }

.article-content {
    padding: 64px 24px;
    max-width: 720px;
}
.article-content h2 {
    font-size: 1.7rem;
    margin: 48px 0 18px;
}
.article-content h2:first-child { margin-top: 0; }
.article-content p { margin-bottom: 18px; font-size: 1.05rem; line-height: 1.8; }
.article-content ul {
    margin: 0 0 18px 24px;
}
.article-content li {
    margin-bottom: 10px;
    font-size: 1.0rem;
    line-height: 1.7;
    color: var(--ink-soft);
}
.article-content strong { color: var(--ink); font-weight: 500; }

.article-tip {
    background: var(--paper-warm);
    border-left: 4px solid var(--blue-main);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 24px 28px;
    margin: 40px 0;
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.article-footer {
    padding: 0 24px 80px;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.article-download-box {
    background: var(--paper-warm);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.article-download-box p { margin: 0; font-size: 0.95rem; }

/* ===== SPONSORS ===== */
.sponsors-section {
    padding: 72px 0;
    background: var(--paper-warm);
    border-top: 1px solid var(--border);
}
.sponsors-section .section-header { margin-bottom: 40px; }
.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.sponsor-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    max-width: 200px;
    height: 90px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.sponsor-card img {
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter var(--transition);
}
.sponsor-card:hover img { filter: grayscale(0%); }

/* ===== SOCIAL MEDIA ===== */
.social-bar {
    display: flex;
    gap: 12px;
    align-items: center;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    transition: all var(--transition);
    border: 1.5px solid transparent;
}
.social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}
.social-link.tiktok {
    background: #010101;
    color: white;
}
.social-link:hover { opacity: 0.85; transform: translateY(-2px); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* social in footer */
.footer-social { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.footer-social .social-link {
    padding: 8px 14px;
    font-size: 0.8rem;
    justify-content: flex-start;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--blue-deep);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer-brand .logo { color: white; margin-bottom: 20px; display: inline-flex; }
.footer-brand .logo-mark { background: var(--blue-main); overflow: hidden; }
.footer-brand .logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand .logo-text strong { color: white; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }

.footer-links h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: white;
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links p { font-size: 0.82rem; line-height: 1.6; }
.footer-small { font-size: 0.78rem; opacity: 0.5; margin-top: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .header-social { display: none; }

    .about-teaser-inner,
    .about-story-inner,
    .download-box { grid-template-columns: 1fr; gap: 40px; }

    .download-box { padding: 48px 32px; }
    .download-tiles { grid-template-columns: repeat(3, 1fr); }

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

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }

    .hero-stamp { display: none; }
    .hero-content { padding: 80px 24px 60px; }
    .hero-logo-img { display: none; }

    .about-teaser-simple { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
    /* Typography */
    h1 { font-size: clamp(2rem, 10vw, 3rem) !important; }
    h2 { font-size: clamp(1.5rem, 7vw, 2.2rem) !important; }

    /* Container */
    .container { padding: 0 16px; }

    /* Header */
    .logo-text { display: none; }
    .logo-mark { width: 40px; height: 40px; }
    .header-inner { height: 60px; }

    /* Hero */
    .hero { min-height: 85vh; }
    .hero-content { padding: 60px 16px 48px; }
    .hero-title { font-size: clamp(2.8rem, 13vw, 4rem); }
    .hero-sub { font-size: 1rem; }
    .hero-badge { font-size: 0.65rem; }
    .social-bar { gap: 8px; }
    .social-link { padding: 8px 14px; font-size: 0.8rem; }

    /* Articles */
    .articles-section { padding: 60px 0; }
    .articles-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Download */
    .download-section { padding: 40px 0; }
    .download-box { padding: 36px 24px; }
    .download-tiles { grid-template-columns: 1fr; gap: 12px; }
    .download-text h2 { font-size: 1.6rem; }

    /* About teaser */
    .about-teaser { padding: 60px 0; }
    .about-teaser-numbers { grid-template-columns: repeat(2, 1fr); }

    /* Sponsors */
    .sponsors-section { padding: 52px 0; }
    .sponsors-grid { gap: 14px; }
    .sponsor-card { min-width: 130px; max-width: 160px; padding: 16px 14px; height: 76px; }
    .sponsor-card img { max-height: 44px; }

    /* Materials */
    .materials-section { padding: 52px 0; }
    .materials-grid { grid-template-columns: 1fr; gap: 20px; }
    .mat-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
    .btn-download { align-self: stretch; text-align: center; justify-content: center; }

    /* About page */
    .about-story { padding: 52px 0; }
    .about-story-inner { grid-template-columns: 1fr; gap: 28px; }
    .story-quote { padding: 32px 24px; }
    .story-quote blockquote { font-size: 1.1rem; }

    /* Values */
    .values-section { padding: 52px 0; }
    .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .value-card { padding: 24px 18px; }

    /* Team */
    .team-section { padding: 52px 0; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .team-card { padding: 24px 16px; }
    .team-avatar { width: 60px; height: 60px; font-size: 1.1rem; }
    .team-card h3 { font-size: 0.95rem; }

    /* Page hero */
    .page-hero { padding: 60px 0 48px; }

    /* Article */
    .article-hero { padding: 48px 0 36px; }
    .article-content { padding: 40px 16px; }
    .article-footer { padding: 0 16px 60px; flex-direction: column; }
    .article-download-box { flex-direction: column; gap: 16px; }
    .article-content h2 { font-size: 1.4rem; }

    /* Join / request */
    .join-section,
    .request-section { padding: 52px 0; }
    .join-inner h2,
    .request-inner h2 { font-size: 1.6rem; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
    .footer-brand { grid-column: 1; }
    .footer-bottom .container { flex-direction: column; gap: 6px; font-size: 0.72rem; }
    .site-footer { padding: 52px 0 0; }
    .footer-social { flex-direction: row; flex-wrap: wrap; }
    .footer-social .social-link { font-size: 0.78rem; padding: 7px 12px; }

    /* Section header */
    .section-header { margin-bottom: 36px; }

    /* Buttons */
    .btn-primary, .btn-outline { padding: 12px 22px; font-size: 0.85rem; }
}

/* Extra small phones */
@media (max-width: 380px) {
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.6rem; }
    .social-bar { flex-direction: column; align-items: flex-start; }
}
