/* ==========================================================================
   Komunitas Food — Stylesheet Utama
   ========================================================================== */

:root {
    --primary:       #e4572e;
    --primary-dark:  #c43f1b;
    --accent:        #f4a261;
    --secondary:     #2a9d8f;
    --dark:          #1d1d1f;
    --dark-soft:     #2b2b2e;
    --light:         #fffaf5;
    --text:          #3d3d3f;
    --text-light:    #8a8a8e;
    --white:         #ffffff;
    --line:          #ece7e0;
    --shadow:        0 10px 40px rgba(29, 29, 31, 0.08);
    --shadow-hover:  0 18px 50px rgba(228, 87, 46, 0.18);
    --radius:        16px;
    --radius-sm:     10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Tombol
   -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(228, 87, 46, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(228, 87, 46, 0.45);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 38px;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 250, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 999px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: rgba(228, 87, 46, 0.08);
}

.nav-cta {
    margin-left: 10px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    margin: 5px auto;
    transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: 100px 0 110px;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 157, 143, 0.12);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(.8); }
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.12;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero p.lead {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 540px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.hero-stats .stat strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--dark);
}

.hero-stats .stat span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.01);
}

.hero-card img {
    border-radius: 16px;
    height: 380px;
    width: 100%;
    object-fit: cover;
}

.hero-float {
    position: absolute;
    left: -20px;
    bottom: -18px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3.5s ease-in-out infinite;
}

.hero-float .emoji {
    font-size: 1.9rem;
}

.hero-float small {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
}

.hero-float strong {
    color: var(--dark);
    font-size: 0.98rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   Section umum
   -------------------------------------------------------------------------- */
.section {
    padding: 96px 0;
}

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

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-head .eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.section-head p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Fitur
   -------------------------------------------------------------------------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    background: rgba(228, 87, 46, 0.1);
    margin-bottom: 18px;
}

.feature-card:nth-child(2) .feature-icon { background: rgba(42, 157, 143, 0.12); }
.feature-card:nth-child(3) .feature-icon { background: rgba(244, 162, 97, 0.16); }
.feature-card:nth-child(4) .feature-icon { background: rgba(52, 101, 164, 0.12); }

.feature-card h3 {
    color: var(--dark);
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.94rem;
}

/* --------------------------------------------------------------------------
   Kegiatan / Agenda
   -------------------------------------------------------------------------- */
.agenda-list {
    display: grid;
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}

.agenda-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 28px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agenda-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
}

.agenda-date {
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
}

.agenda-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.agenda-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.agenda-body h3 {
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.agenda-body p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.agenda-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(42, 157, 143, 0.12);
    color: var(--secondary);
    margin-right: 8px;
}

/* --------------------------------------------------------------------------
   Tentang singkat
   -------------------------------------------------------------------------- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    border-radius: 24px;
    height: 440px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-media::after {
    content: "";
    position: absolute;
    inset: 24px -24px -24px 24px;
    border: 3px solid var(--accent);
    border-radius: 24px;
    z-index: -1;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 18px;
}

.about-points {
    margin: 24px 0 28px;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark);
}

.about-points .check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Anggota
   -------------------------------------------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 30px 20px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.avatar {
    width: 84px;
    height: 84px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.team-card:nth-child(2) .avatar { background: linear-gradient(135deg, var(--secondary), #57b6a8); }
.team-card:nth-child(3) .avatar { background: linear-gradient(135deg, #3465a4, #6a9bd8); }
.team-card:nth-child(4) .avatar { background: linear-gradient(135deg, #a03dab, #d06adc); }

.team-card h3 {
    color: var(--dark);
    font-size: 1.05rem;
    font-weight: 700;
}

.team-card .role {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-top: 10px;
}

/* --------------------------------------------------------------------------
   Galeri
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--line);
}

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

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

.gallery-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 40px 18px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox img {
    max-width: 92%;
    max-height: 82vh;
    border-radius: 12px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.6rem;
    cursor: pointer;
    line-height: 1;
}

.lightbox-caption {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    background: rgba(0, 0, 0, 0.55);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */
.cta-banner {
    background: linear-gradient(120deg, var(--primary), var(--primary-dark) 45%, var(--accent));
    color: var(--white);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    font-size: 160px;
    opacity: 0.08;
    top: -30px;
    right: 20px;
    transform: rotate(15deg);
}

.cta-banner h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
}

.cta-banner p {
    max-width: 560px;
    margin: 0 auto 30px;
    opacity: 0.92;
    font-size: 1.05rem;
    position: relative;
}

/* --------------------------------------------------------------------------
   Kontak
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    color: var(--dark);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.contact-item .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(228, 87, 46, 0.1);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
}

.contact-item h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.94rem;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 34px;
}

.form-row {
    display: grid;
    gap: 18px;
}

.form-row.two {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--light);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(228, 87, 46, 0.15);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-status {
    display: none;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-status.success { background: rgba(42, 157, 143, 0.12); color: var(--secondary); display: block; }
.form-status.error { background: rgba(228, 87, 46, 0.12); color: var(--primary-dark); display: block; }

/* --------------------------------------------------------------------------
   Halaman dalam (Tentang, Kegiatan, Galeri)
   -------------------------------------------------------------------------- */
.page-hero {
    background: var(--white);
    text-align: center;
    padding: 84px 24px;
    border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 14px 0 16px;
}

.page-hero p {
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.08rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.news-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.news-body {
    padding: 22px;
}

.news-body .meta {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.news-body h3 {
    color: var(--dark);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.news-body p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   Nilai-nilai
   -------------------------------------------------------------------------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 34px 28px;
    text-align: center;
}

.value-card .emoji {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.value-card h3 {
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.94rem;
}

/* --------------------------------------------------------------------------
   Timeline
   -------------------------------------------------------------------------- */
.timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(var(--primary), var(--accent));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 34px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--light);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item .year {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
}

.timeline-item h3 {
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 4px 0 8px;
}

.timeline-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--dark);
    color: #b9b9bd;
    padding: 64px 0 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .brand {
    color: var(--white);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: #b9b9bd;
    padding: 6px 0;
    font-size: 0.92rem;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.88rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}

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

/* --------------------------------------------------------------------------
   Reveal saat scroll
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-split { grid-template-columns: 1fr; gap: 48px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 520px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--light);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 20px 24px 28px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 40px rgba(29, 29, 31, 0.1);
        transform: translateY(-140%);
        transition: transform 0.35s ease;
        z-index: 99;
    }

    .nav-menu.open { transform: translateY(0); }

    .nav-menu a { display: block; padding: 12px 14px; }
    .nav-cta { margin: 12px 0 0; }

    .nav-toggle { display: flex; flex-direction: column; }

    .nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .section { padding: 72px 0; }
    .hero { padding: 64px 0 80px; }
    .agenda-item { grid-template-columns: 90px 1fr; }
    .agenda-tag-wrap { grid-column: 1 / -1; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .feature-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .form-row.two { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 44px 24px; }
}