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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background: #1e2b24;
}

a {
    color: inherit;
    text-decoration: none;
}

.cover {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.cover-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://i0.wp.com/leedsfoodaidnetwork.co.uk/wp-content/uploads/2024/10/unnamed-1.jpg?resize=960%2C504&ssl=1");
    background-size: cover;
    background-position: center;
    filter: saturate(0.9) contrast(0.95);
    transform: scale(1.03);
}

.cover-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(20, 31, 25, 0.88) 0%, rgba(20, 31, 25, 0.55) 45%, rgba(20, 31, 25, 0.75) 100%),
        radial-gradient(circle at 78% 18%, rgba(47, 107, 69, 0.24), transparent 42%);
}

.main-header,
.cover-content {
    position: relative;
    z-index: 2;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 100;
}

.logo {
    min-width: 40px;
}

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

.main-nav ul li a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.15px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #ffffff;
}

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

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

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

.main-nav ul li a.active {
    color: rgba(255, 255, 255, 0.92);
}

.menu-toggle {
    display: none;
}

.cover-content {
    max-width: 1220px;
    margin: 0 auto;
    min-height: calc(100vh - 84px);
    padding: 42px 24px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cover-kicker {
    font-size: 0.88rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
}

.cover-content h1 {
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 1.03;
    font-weight: 800;
    max-width: 12ch;
    margin-bottom: 20px;
}

.cover-subtitle {
    font-size: 1.12rem;
    line-height: 1.9;
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 34px;
}

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

.btn-enter,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-enter {
    background: #2f6b45;
    color: #ffffff;
    border-color: #2f6b45;
}

.btn-enter:hover {
    background: #25563a;
    border-color: #25563a;
}

.btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.home-preview {
    background: linear-gradient(180deg, #f7f4ef 0%, #f2ede6 100%);
    color: #25563a;
    padding: 68px 20px 86px;
}

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

.preview-head {
    text-align: center;
    margin-bottom: 46px;
}

.preview-head h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.22;
    font-weight: 800;
    color: #2f6b45;
    max-width: 24ch;
    margin: 0 auto;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px;
    margin-bottom: 58px;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 46px;
    padding-right: 14px;
}

.quick-item {
    background: #ffffff;
    border: 1px solid rgba(60, 40, 20, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(87, 62, 34, 0.06);
}

.quick-item img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    display: block;
}

.quick-item-body {
    padding: 30px 32px 34px;
}

.home-preview .quick-item-body h3 {
    font-size: clamp(1.55rem, 2.2vw, 1.95rem);
    line-height: 1.3;
    color: #2f6b45;
    font-weight: 800;
    margin-bottom: 14px;
}

.home-preview .quick-item-body p {
    font-size: 1.02rem;
    line-height: 1.86;
    color: #2f6b45;
    margin-bottom: 22px;
}

.quick-item-body a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2f6b45;
    color: #2f6b45;
    min-height: 42px;
    padding: 8px 18px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.quick-item-body a:hover {
    background: #2f6b45;
    color: #ffffff;
}

.about-preview {
    display: grid;
    grid-template-columns: 0.92fr 0.92fr;
    gap: 44px;
    align-items: center;
    background: transparent;
    border-top: none;
    padding-top: 28px;
    max-width: none;
    margin: 0 auto;
    padding-left: 25px;
}

.about-preview-copy {
    padding-left: 34px;
}

.about-main-title {
    color: #2f6b45;
    font-size: clamp(2.05rem, 2.9vw, 2.8rem);
    letter-spacing: 0.4px;
    text-transform: none;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-sub-title {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.5;
    color: #2d6242;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-preview-copy span {
    display: block;
    width: 58px;
    height: 3px;
    background: #2f6b45;
    margin-bottom: 20px;
}

.about-text {
    font-size: 0.98rem;
    line-height: 1.68;
    color: #2d6242;
    margin-bottom: 14px;
}

.about-preview-copy a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 18px;
    background: #2f6b45;
    color: #ffffff;
    font-size: 0.84rem;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(47, 107, 69, 0.24);
    transition: transform 0.2s ease, background 0.2s ease;
}

.about-preview-copy a::after {
    content: '→';
    font-size: 0.9rem;
}

.about-preview-copy a:hover {
    background: #25563a;
    transform: translateY(-1px);
}

.about-preview-image img {
    width: 100%;
    border-radius: 14px;
    display: block;
    min-height: 275px;
    max-height: 470px;
    object-fit: cover;
    object-position: 100% center;
}

.about-preview-image {
    justify-self: end;
    width: 96%;
}

.section-divider {
    max-width: 980px;
    margin: 56px 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: 980px) {
    .main-header {
        padding: 18px 24px;
    }

    .main-nav ul {
        gap: 20px;
    }

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

    .quick-grid,
    .about-preview {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 760px) {
    .main-header {
        position: relative;
        padding: 18px 20px;
        align-items: flex-start;
    }

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

    .main-nav ul li a {
        font-size: 0.82rem;
        letter-spacing: 0.7px;
    }

    .cover-content {
        padding-top: 92px;
    }

    .cover-content {
        padding: 32px 16px 56px;
    }

    .cover-subtitle {
        font-size: 1rem;
        line-height: 1.78;
    }


    .home-preview {
        padding: 54px 16px 68px;
    }

    .quick-item-body h3 {
        font-size: 1.55rem;
    }

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

    .hidden-phone img {
        max-width: 68px;
        max-height: 40px;
    }
}
.quick-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    font-size: 1.15rem;
    line-height: 1;
    animation: scrollMove 1.4s ease-in-out infinite;
}

@keyframes scrollMove {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.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;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
