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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f3efe9;
    color: #322d28;
    font-size: 1.14rem;
    line-height: 1.82;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-content {
    flex-grow: 1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(248, 246, 242, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(60, 60, 60, 0.06);
    z-index: 100;
}

.logo {
    min-width: 260px;
    padding-left: 14px;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-brand-icon {
    width: 78px;
    height: auto;
    object-fit: contain;
    display: block;
}

.nav-brand-text {
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.brand-blue {
    color: #36b8f0;
}

.brand-green {
    color: #6bb343;
    margin-left: 4px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav ul li a {
    color: #2f2a25;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.15px;
    position: relative;
    padding-bottom: 5px;
    font-size: 1.08rem;
}

.main-nav ul li a:hover {
    color: #2f6b45;
}

.main-nav ul li a.active {
    color: #2f6b45;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6bb343;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #3a342e;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 25px;
    height: 2px;
    background-color: #3a342e;
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.about-section {
    padding: 162px 20px 90px;
    background: linear-gradient(180deg, #f6f1eb 0%, #f3efe9 52%, #efe9e2 100%);
}

.food-wrap {
    max-width: 1220px;
    margin: 0 auto;
}

.hero-block--food {
    max-width: 920px;
    margin-bottom: 40px;
}

.section-title {
    font-size: clamp(3.35rem, 5.3vw, 4.25rem);
    line-height: 1.03;
    font-weight: 800;
    color: #2f6b45;
    margin-bottom: 18px;
}

.map-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: start;
    margin-bottom: 64px;
    position: relative;
}

.map-feature__visual {
    position: relative;
    z-index: 1;
}

.map-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #2a2622;
    box-shadow:
        0 24px 56px rgba(45, 32, 18, 0.20),
        0 10px 26px rgba(62, 42, 22, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.map-link {
    display: block;
    overflow: hidden;
    line-height: 0;
}

.map-link:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -6px;
    border-radius: 4px;
}

.map-link img {
    width: 100%;
    height: clamp(360px, 48vw, 560px);
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.45s ease, opacity 0.35s ease;
}

.map-link:hover img,
.map-link:focus-visible img {
    transform: scale(1.03);
    opacity: 0.96;
}

.media-note {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #5c5852;
    max-width: 100%;
}

.map-feature__copy {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2px 0 0;
    margin-left: 0;
    position: relative;
    z-index: 2;
    box-shadow: none;
    max-width: none;
}

.map-feature__title {
    font-size: 1.95rem;
    line-height: 1.2;
    font-weight: 800;
    color: #2f6b45;
    margin-bottom: 22px;
    padding: 6px 0 6px 12px;
    border-left: 4px solid rgba(47, 107, 69, 0.42);
    background: rgba(47, 107, 69, 0.05);
    border-radius: 6px;
}

.map-feature__title a {
    color: inherit;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    display: inline-block;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.map-feature__title a:hover {
    color: #25563a;
    opacity: 0.9;
    text-decoration: none !important;
}

.map-feature__copy p {
    font-size: 1.02rem;
    line-height: 1.72;
    font-weight: 500;
    color: #3b3530;
    margin-bottom: 14px;
}

.map-feature-points {
    margin: 4px 0 0;
    padding-left: 22px;
    display: grid;
    gap: 5px;
}

.map-feature-points li {
    font-size: 0.98rem;
    line-height: 1.66;
    font-weight: 600;
    color: #3b3530;
}

.map-copy-group {
    padding: 18px 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(47, 107, 69, 0.10);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 6px 18px rgba(45, 36, 28, 0.04);
}

.map-copy-group h5 {
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
    color: #2f6b45;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.map-feature__copy a {
    color: #2f6b45;
    text-decoration: underline;
    text-decoration-thickness: 1.6px;
    text-underline-offset: 3px;
}

.map-feature__copy a:hover {
    color: #25563a;
}

.info-panel {
    margin-bottom: 48px;
    padding: 28px 0 32px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid rgba(120, 100, 80, 0.14);
    border-bottom: 1px solid rgba(120, 100, 80, 0.12);
}

.info-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 28px;
}

.info-list--cards li {
    position: relative;
    padding: 10px 0 10px 22px;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 500;
    color: #3d3630;
    background: transparent;
    border: none;
    border-radius: 0;
    border-left: 3px solid rgba(47, 107, 69, 0.45);
}

.info-list--cards li::before {
    display: none;
}

.updates-section {
    margin-bottom: 48px;
    padding: 28px 32px 32px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(120, 100, 80, 0.10);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(87, 62, 34, 0.035);
}

.updates-section__title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1f4f35;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.updates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
    align-items: start;
}

.update-card {
    padding: 0 8px 0 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.update-card:first-child {
    padding-right: 28px;
    border-right: 1px solid rgba(120, 100, 80, 0.12);
}

.update-card p {
    font-size: 1.06rem;
    line-height: 1.78;
    font-weight: 500;
    color: #2d6242;
    margin: 0;
}

.update-card h5 {
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
    color: #1f4f35;
    margin: 0 0 10px;
}

.update-card a {
    color: #2f6b45;
    text-decoration: underline;
    text-decoration-thickness: 1.6px;
    text-underline-offset: 3px;
}

.update-card a:hover {
    color: #25563a;
}

.split-section--feature {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 0;
    align-items: stretch;
    margin-bottom: 48px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(120, 100, 80, 0.14);
    box-shadow: 0 18px 40px rgba(87, 62, 34, 0.07);
}

.split-section--compact {
    margin-top: 72px;
    margin-bottom: 44px;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(87, 62, 34, 0.045);
}

.split-text--panel {
    padding: 28px 30px;
    background: #f8f6f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-heading {
    font-size: 1.28rem;
    font-weight: 800;
    color: #3f3933;
    margin-bottom: 12px;
    line-height: 1.18;
}

.split-text--panel p {
    font-size: 0.98rem;
    line-height: 1.68;
    font-weight: 500;
    color: #45423c;
    margin: 0 0 10px;
}

.split-text--panel a {
    color: #2f6b45;
    text-decoration: underline;
    text-decoration-thickness: 1.6px;
    text-underline-offset: 3px;
}

.split-text--panel a:hover {
    color: #25563a;
}

.split-links {
    font-size: 0.9rem;
    color: #6b655e;
    margin-top: 2px;
}

.split-image--tilt {
    overflow: hidden;
    min-height: 220px;
}

.split-image--tilt img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    max-height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.split-section--feature:hover .split-image--tilt img {
    transform: scale(1.04);
}

.support-section--cards {
    max-width: 1220px;
    margin-bottom: 48px;
    padding: 6px 0 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.support-section__title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f4f35;
    margin: 0 0 18px;
    letter-spacing: -0.3px;
}

.support-intro {
    font-size: 0.95rem;
    line-height: 1.66;
    font-weight: 500;
    color: #2d6242;
    margin: 14px 0 0;
    max-width: 100%;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    border-top: none;
}

.support-card {
    display: block;
    padding: 18px 18px 16px;
    background: #f1eee9;
    border: 1px solid rgba(47, 107, 69, 0.20);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 28px rgba(47, 107, 69, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.support-card:hover {
    transform: translateY(-3px);
    border-color: rgba(47, 107, 69, 0.45);
    box-shadow: 0 16px 32px rgba(47, 107, 69, 0.14);
}

.support-card:focus-visible {
    outline: 3px solid #2f6b45;
    outline-offset: 2px;
}

.support-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.support-card__icon {
    width: 144px;
    height: 144px;
    border: 1px solid rgba(47, 107, 69, 0.24);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f6f3ee;
    padding: 7px;
    overflow: hidden;
}

.support-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.support-card__heading {
    font-size: 1.34rem;
    font-weight: 800;
    color: #1f4f35;
    line-height: 1.3;
    margin: 0;
}

.support-card__desc {
    font-size: 1.03rem;
    line-height: 1.6;
    color: #2d6242;
    margin: 0;
}

.support-card__cta {
    font-size: 1.05rem;
    line-height: 1;
    font-weight: 700;
    color: #2f6b45;
    margin-top: 2px;
}

.food-divider {
    max-width: 980px;
    margin: 50px auto 0;
    border-top: 1px solid rgba(120, 100, 80, 0.12);
}

.hidden-phone {
    margin-top: 36px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 26px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.hidden-phone p {
    width: 100%;
    color: #8a8076;
    font-size: 0.82em;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.hidden-phone a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hidden-phone img {
    max-width: 78px;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
    margin: 0;
}

.hidden-phone img:hover {
    transform: translateY(-1px);
}

.hidden-phone a:last-child img {
    max-width: 110px;
    max-height: 50px;
}

.main-footer {
    text-align: center;
    padding: 34px 20px;
    background-color: #e2dbd2;
    color: #6a625b;
}

.main-footer p {
    font-size: 15px;
    margin: 0;
}

@media (max-width: 1100px) {
    .map-feature {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .map-feature__copy {
        margin-left: 0;
        padding: 0;
        max-width: none;
    }

    .updates-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .update-card:first-child {
        border-right: none;
        padding-right: 0;
        padding-bottom: 22px;
        margin-bottom: 22px;
        border-bottom: 1px solid rgba(120, 100, 80, 0.12);
    }

    .updates-section {
        padding: 22px 20px 26px;
    }

    .split-section--feature {
        grid-template-columns: 1fr;
    }

    .split-image--tilt img {
        min-height: 220px;
        max-height: 240px;
    }

    .info-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-title {
        font-size: 3.1rem;
    }

    .map-link img {
        height: auto;
        min-height: 300px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 18px 20px;
    }

    .main-nav ul {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav ul li a {
        font-size: 0.9rem;
    }

    .nav-brand-icon {
        width: 54px;
        height: auto;
    }

    .logo {
        min-width: 210px;
    }

    .nav-brand-text {
        font-size: 0.68rem;
    }

    .about-section {
        padding: 138px 16px 70px;
    }

    .section-title {
        font-size: 2.45rem;
    }

    .map-feature__copy p,
    .update-card p,
    .media-note {
        font-size: 1.05rem;
    }

    .map-feature-points li {
        font-size: 1rem;
    }

    .update-card h5 {
        font-size: 1.05rem;
    }

    .map-feature__title {
        font-size: 1.55rem;
    }

    .info-panel {
        padding: 22px 0 26px;
    }

    .updates-section__title,
    .support-section__title {
        font-size: 1.4rem;
    }

    .support-card {
        padding: 16px 16px 15px;
    }

.support-card__icon {
        width: 110px;
        height: 110px;
    }

    .split-text--panel {
        padding: 28px 24px;
    }

    .split-heading {
        font-size: 1.45rem;
    }

    .split-image--tilt {
        min-height: 220px;
    }

    .split-image--tilt img {
        min-height: 240px;
    }

    .info-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hidden-phone {
        gap: 14px 18px;
    }

    .hidden-phone img {
        max-width: 68px;
        max-height: 40px;
    }
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: #ffffff;
    color: #1f1f1f;
    border: 2px solid #d87416;
    font-weight: 700;
}
