@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800;900&display=swap');

:root {
    --green: #6ead73;
    --green-dark: #37784b;
    --green-soft: #eef8ef;
    --mint: #dff3e4;
    --cream: #fffaf0;
    --text: #22312b;
    --muted: #65736b;
    --white: #ffffff;
    --shadow: 0 16px 45px rgba(49, 96, 64, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fbfdf9;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

a {
    color: inherit;
}

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    width: min(880px, calc(100% - 32px));
}

.program-wide {
    width: min(1180px, calc(100% - 32px));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.top-line {
    border-bottom: 1px solid rgba(110, 173, 115, 0.18);
}

.header-top {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    min-width: 245px;
}

.logo-block img {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(82, 145, 91, 0.20);
}

.logo-block strong {
    display: block;
    font-size: 19px;
    line-height: 1.15;
    color: var(--green-dark);
}

.logo-block small {
    display: block;
    color: var(--muted);
    margin-top: 4px;
    font-size: 13px;
}

.header-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 14px;
    color: var(--muted);
}

.contact-mini {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.contact-mini a {
    text-decoration: none;
}

.contact-mini a:hover {
    color: var(--green-dark);
}

.mini-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 13px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: flex;
    border: 1px solid rgba(110, 173, 115, 0.35);
    border-radius: 999px;
    overflow: hidden;
    background: white;
}

.lang-switch a {
    padding: 8px 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    color: var(--green-dark);
}

.lang-switch a.active {
    background: var(--green);
    color: white;
}

.menu-toggle {
    display: none;
    border: 0;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--green);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.main-nav {
    background: rgba(245, 251, 246, 0.95);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 48px;
}

.nav-inner a {
    padding: 10px 13px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    color: var(--text);
    transition: 0.22s;
    white-space: nowrap;
}

.nav-inner a:hover {
    background: white;
    color: var(--green-dark);
    box-shadow: 0 8px 18px rgba(55, 120, 75, 0.10);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 70px;
    background: radial-gradient(circle at 15% 20%, rgba(213, 240, 218, 0.95), transparent 36%),
                linear-gradient(135deg, #fbfff9 0%, #eff8ef 54%, #fffaf0 100%);
}

.hero::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(110, 173, 115, 0.14);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 52px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: white;
    color: var(--green-dark);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(55, 120, 75, 0.08);
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.04;
    margin: 0 0 22px;
    letter-spacing: 0;
}

.hero p {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 16px 32px rgba(55, 120, 75, 0.22);
    transition: 0.25s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(55, 120, 75, 0.28);
}

.hero-card {
    padding: 18px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow);
}

.hero-card img {
    border-radius: 26px;
    width: 100%;
}

.section {
    padding: 78px 0;
}

.green-soft {
    background: var(--green-soft);
}

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

.section-head.left {
    text-align: left;
    margin-left: 0;
}

.section-head.compact {
    margin-bottom: 18px;
}

.section-head span {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--green-dark);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 44px);
    margin: 0 0 14px;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
    font-size: 17px;
}

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

.feature-card,
.doc-card,
.blog-card,
.news-card,
.single-post-card {
    background: white;
    border: 1px solid rgba(110, 173, 115, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card,
.doc-card,
.news-card {
    padding: 28px;
}

.feature-card h3,
.doc-card h3,
.news-card h3,
.blog-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.feature-card p,
.doc-card p,
.news-card p,
.blog-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.feature-icon,
.doc-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-soft);
    font-size: 24px;
    margin-bottom: 18px;
}

.doc-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
}

.small-link {
    display: inline-flex;
    margin-top: auto;
    align-self: flex-start;
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid rgba(55, 120, 75, 0.20);
}

.small-link:hover {
    border-bottom-color: var(--green-dark);
}

.food-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 44px;
    align-items: center;
}

.food-table-wrap {
    padding: 12px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.food-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
}

.food-table th,
.food-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(110, 173, 115, 0.16);
}

.food-table tr:last-child th,
.food-table tr:last-child td {
    border-bottom: 0;
}

.food-table th {
    width: 170px;
    background: #f3fbf4;
    color: var(--green-dark);
}

.blog-card {
    overflow: hidden;
    padding: 24px;
    transition: 0.25s;
}

.blog-card:hover,
.news-card:hover,
.feature-card:hover,
.doc-card:hover {
    transform: translateY(-4px);
}

.blog-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
}

.blog-date,
.news-date {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e7f5ea;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.news-card {
    overflow: hidden;
    transition: 0.25s;
    display: flex;
    flex-direction: column;
}

.news-image {
    width: calc(100% + 56px);
    height: 185px;
    object-fit: cover;
    margin: -28px -28px 18px;
}

.news-open {
    margin-top: 18px;
    background: transparent;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid rgba(55, 120, 75, 0.20);
    padding: 0 0 3px;
    cursor: pointer;
    font: inherit;
}

.news-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(17, 38, 25, 0.58);
}

.news-modal.show {
    display: flex;
}

.news-modal-card {
    position: relative;
    width: min(850px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.news-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #eef8f0;
    color: var(--green-dark);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.news-modal-image {
    display: none;
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 18px;
}

.news-modal-image.show {
    display: block;
}

.news-modal-card h2 {
    margin: 0 0 16px;
    font-size: clamp(26px, 4vw, 40px);
}

.news-modal-content {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
    white-space: pre-line;
}

.empty-message {
    text-align: center;
    color: var(--muted);
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

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

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
    background: white;
    aspect-ratio: 4 / 3;
}

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

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

.contacts-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: stretch;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 18px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(55, 120, 75, 0.08);
}

.contact-list span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-soft);
}

.contact-list a {
    color: var(--green-dark);
    text-decoration: none;
}

.map-card {
    border-radius: 28px;
    overflow: hidden;
    min-height: 380px;
    background: white;
    box-shadow: var(--shadow);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

.footer {
    padding: 30px 0;
    background: #1f3728;
    color: white;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(13, 28, 20, 0.82);
    padding: 24px;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-height: 86vh;
    max-width: 94vw;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.45);
}

.lightbox button {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: white;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.post-page {
    background: var(--green-soft);
    min-height: 70vh;
}

.single-post-card {
    padding: 34px;
}

.single-post-image {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 22px;
}

.single-post-card h1 {
    font-size: clamp(30px, 4vw, 48px);
    margin: 0 0 20px;
}

.post-content {
    color: var(--text);
    line-height: 1.85;
    font-size: 18px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1080px) {
    .header-top {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .header-info {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .hero-grid,
    .food-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .nav-inner {
        padding: 12px 0;
        min-height: unset;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-inner a {
        text-align: center;
        background: white;
    }

    .header-top {
        justify-content: center;
    }

    .logo-block {
        width: 100%;
        justify-content: center;
        text-align: left;
    }

    .header-info {
        justify-content: center;
    }

    .address-mini {
        white-space: normal;
        justify-content: center;
        text-align: center;
    }

    .features-grid,
    .docs-grid,
    .blog-grid,
    .news-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 54px;
    }

    .section {
        padding: 54px 0;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .contact-mini {
        font-size: 13px;
    }

    .food-table th,
    .food-table td {
        display: block;
        width: 100%;
    }

    .food-table th {
        padding-bottom: 8px;
    }

    .food-table td {
        padding-top: 8px;
    }
}


.program-teaser {
    padding: 42px 0;
    background: #ffffff;
}

.program-teaser-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 26px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff, #f1fbf3);
    box-shadow: var(--shadow);
    border: 1px solid rgba(110, 173, 115, 0.16);
}

.program-full-card {
    margin-top: 18px;
}

.program-full-card .section-head {
    max-width: 860px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: start;
}

.feedback-form-card,
.feedback-list-card,
.feedback-item {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(110, 173, 115, 0.12);
}

.feedback-form-card,
.feedback-list-card {
    padding: 28px;
}

.feedback-list-card h2 {
    margin: 0 0 18px;
    color: var(--green-dark);
}

.feedback-form {
    display: grid;
    gap: 15px;
}

.feedback-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
    color: var(--green-dark);
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    border: 1px solid rgba(55, 120, 75, 0.22);
    border-radius: 16px;
    padding: 14px 15px;
    font: inherit;
    background: #fbfffb;
    outline: none;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(110, 173, 115, 0.16);
}

.feedback-form textarea {
    resize: vertical;
}

.hidden-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.site-alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.5;
}

.site-alert.success {
    background: #e5f6e8;
    color: var(--green-dark);
}

.site-alert.error {
    background: #fff0ee;
    color: #9a2b20;
}

.feedback-list {
    display: grid;
    gap: 16px;
}

.feedback-item {
    padding: 20px;
}

.feedback-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--green-dark);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.feedback-meta span {
    color: var(--muted);
    font-size: 14px;
}

.feedback-item > p {
    margin: 0;
    color: var(--text);
    line-height: 1.72;
}

.admin-answer {
    margin-top: 16px;
    padding: 16px;
    border-radius: 18px;
    background: var(--green-soft);
    border-left: 4px solid var(--green);
}

.admin-answer strong {
    color: var(--green-dark);
}

.admin-answer p {
    margin: 8px 0 0;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .program-teaser-card,
    .feedback-grid {
        grid-template-columns: 1fr;
    }

    .program-teaser-card .btn-primary {
        justify-self: start;
    }
}

/* Program page from Word document */
.program-content {
    font-size: 17px;
    line-height: 1.8;
}

.program-doc-cover {
    padding: 28px;
    margin: 10px 0 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f5fbf1, #ffffff);
    border: 1px solid rgba(95, 143, 74, 0.16);
    box-shadow: 0 12px 40px rgba(50, 90, 45, 0.08);
}

.program-doc-cover h2 {
    margin: 0 0 8px;
    color: var(--green-dark);
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 0;
}

.program-doc-cover p {
    margin: 0;
    font-weight: 700;
    color: #315539;
}

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.program-meta span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(95, 143, 74, 0.14);
    font-size: 15px;
}

.program-section {
    margin: 28px 0;
}

.program-section.nested {
    margin: 18px 0 0;
}

.program-content h2 {
    margin: 34px 0 14px;
    color: var(--green-dark);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
}

.program-content h3 {
    margin: 24px 0 10px;
    color: #315539;
    font-size: 22px;
    line-height: 1.35;
}

.program-content h4 {
    margin: 18px 0 8px;
    color: #47704a;
    font-size: 18px;
}

.program-content p {
    margin: 0 0 14px;
}

.program-content ul,
.program-content ol {
    margin: 8px 0 18px;
    padding-left: 24px;
}

.program-content li {
    margin: 6px 0;
}

.program-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 18px 0;
}

.program-columns > div {
    padding: 18px;
    border-radius: 20px;
    background: #fbfffb;
    border: 1px solid rgba(95, 143, 74, 0.13);
}

.program-details {
    margin: 18px 0;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(95, 143, 74, 0.18);
    box-shadow: 0 10px 34px rgba(40, 80, 40, 0.07);
    overflow: hidden;
}

.program-details summary {
    cursor: pointer;
    padding: 20px 24px;
    color: var(--green-dark);
    font-weight: 900;
    font-size: 19px;
    list-style: none;
    background: linear-gradient(135deg, #eef8ef, #ffffff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.program-details summary::-webkit-details-marker {
    display: none;
}

.program-details summary::after {
    content: '+';
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.program-details[open] summary::after {
    content: '−';
}

.program-details > .program-section {
    padding: 0 24px 24px;
}

.program-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 18px 0 26px;
    border-radius: 18px;
    border: 1px solid rgba(95, 143, 74, 0.18);
}

.program-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

.program-table th,
.program-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(95, 143, 74, 0.13);
    border-right: 1px solid rgba(95, 143, 74, 0.1);
    vertical-align: top;
    text-align: left;
}

.program-table th {
    background: #eef8ef;
    color: var(--green-dark);
    font-weight: 900;
}

.program-table tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 760px) {
    .program-columns {
        grid-template-columns: 1fr;
    }

    .program-doc-cover,
    .program-details > .program-section {
        padding: 20px;
    }

    .program-details summary {
        padding: 18px 20px;
        font-size: 17px;
    }

    .program-meta span {
        border-radius: 16px;
        align-items: flex-start;
    }
}

/* Обновленный блок контактов без карты */
.contact-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.contact-column-card {
    min-height: 190px;
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(110, 173, 115, 0.16);
}

.contact-column-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--green-soft);
    font-size: 24px;
    margin-bottom: 18px;
}

.contact-column-card h3 {
    margin: 0 0 10px;
    color: var(--green-dark);
    font-size: 20px;
}

.contact-column-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.contact-column-card a {
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}

/* Обновленный подвал: 3 колонки, без карты */
.footer {
    padding: 46px 0 20px;
    background: #1f3728;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.1fr;
    gap: 34px;
    align-items: start;
}

.footer-col h3 {
    margin: 0 0 16px;
    font-size: 18px;
    color: var(--white);
}

.footer-brand p,
.footer-bottom p,
.footer-contact-list p {
    color: rgba(255, 255, 255, 0.74);
}

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

.footer-logo img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.footer-logo strong {
    display: block;
    font-size: 19px;
    line-height: 1.2;
}

.footer-logo small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.footer-menu a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

.footer-menu a:hover,
.footer-bottom a:hover,
.footer-contact-list a:hover {
    color: var(--white);
}

.footer-contact-list {
    display: grid;
    gap: 12px;
}

.footer-contact-list div {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    align-items: start;
}

.footer-contact-list span {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
}

.footer-contact-list p {
    margin: 3px 0 0;
    line-height: 1.55;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 900px) {
    .contact-columns,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .footer-menu {
        grid-template-columns: 1fr;
    }

    .contact-column-card {
        padding: 22px;
    }
}

/* Блок «Питание»: скачивание PDF */
.food-pdf-card {
    position: relative;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    align-items: center;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffffff, #f1fbf3);
    box-shadow: var(--shadow);
    border: 1px solid rgba(110, 173, 115, 0.18);
    overflow: hidden;
}

.food-pdf-card::after {
    content: '';
    position: absolute;
    right: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(110, 173, 115, 0.12);
}

.food-pdf-icon {
    position: relative;
    z-index: 1;
    width: 96px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #ffffff;
    color: var(--green-dark);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 0;
    box-shadow: 0 16px 34px rgba(55, 120, 75, 0.14);
    border: 1px solid rgba(55, 120, 75, 0.14);
}

.food-pdf-icon::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 0 22px 0 12px;
    background: var(--green-soft);
    border-left: 1px solid rgba(55, 120, 75, 0.12);
    border-bottom: 1px solid rgba(55, 120, 75, 0.12);
}

.food-pdf-body {
    position: relative;
    z-index: 1;
}

.food-pdf-body h3 {
    margin: 0 0 10px;
    color: var(--green-dark);
    font-size: 26px;
}

.food-pdf-body p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.food-pdf-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.food-pdf-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--green-dark);
    font-weight: 800;
    border: 1px solid rgba(55, 120, 75, 0.12);
}

.food-download-btn {
    text-decoration: none;
}

.food-pdf-empty {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px dashed rgba(55, 120, 75, 0.30);
    color: var(--muted);
    line-height: 1.5;
}

.food-pdf-empty strong {
    color: var(--green-dark);
}

.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--white);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 32px rgba(31, 55, 40, 0.28);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--green);
}

@media (max-width: 620px) {
    .food-pdf-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .food-pdf-icon {
        width: 84px;
        height: 104px;
    }

    .scroll-top-btn {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
}
