:root {
    --wolff-green: #99a456;
    --wolff-blue: #c0d8e7;
    --wolff-ink: #333333;
    --wolff-white: #ffffff;
    --wolff-section: #eef7fc;
    --wolff-heading: "Song Myung", serif;
    --wolff-body: "Ubuntu", Arial, sans-serif;
    --container: 1380px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--wolff-ink);
    font-family: var(--wolff-body);
    font-size: 16px;
    line-height: 1.75;
    background: var(--wolff-white);
}

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

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

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--wolff-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.topbar {
    background: var(--wolff-blue);
    font-size: 12px;
}

.topbar__inner {
    display: flex;
    min-height: 51px;
    align-items: center;
    gap: 10px;
}

.topbar__inner a {
    background: var(--wolff-white);
    padding: 4px 14px;
}

.topbar__hours {
    margin-left: auto;
}

.header-main {
    display: flex;
    min-height: 122px;
    align-items: center;
    gap: 54px;
}

.site-logo {
    display: grid;
    width: 170px;
    padding: 15px 0;
    min-height: 122px;
    place-items: flex-start;
    align-self: stretch;
    background: var(--wolff-white);
}

.site-logo img {
    width: 132px;
    height: auto;
}

.primary-nav {
    flex: 1;
}

.primary-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.button {
    display: inline-flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 2px solid;
    color: var(--wolff-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 1.2;
    text-transform: uppercase;
    transition: 0.6s ease all;
}



.button--primary {
    border: 2px solid var(--wolff-green);
    background: var(--wolff-green);
}

.button--secondary {
    border: 2px solid var(--wolff-blue);
    background: var(--wolff-blue);
}

.button:hover
{
    background: transparent;
}

.button--primary:hover
{
    color: var(--wolff-green);
}

.button--secondary:hover
{
    color: var(--wolff-blue);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: var(--wolff-blue);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--wolff-ink);
}

.hero {
    position: relative;
    min-height: 538px;
    overflow: hidden;
}

.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.hero__inner {
    position: relative;
    min-height: 538px;
    display: flex;
    align-items: center;
}

.hero__panel {
    width: min(599px, 100%);
    padding: 58px 58px 54px;
    background: rgba(255, 255, 255, .85);
}

.hero h1 {
    margin: 0 0 34px;
    color: var(--wolff-green);
    font-family: var(--wolff-heading);
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.27;
}

.hero__actions,
.image-text__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__slider {
    position: absolute;
    left: 50%;
    bottom: 23px;
    display: flex;
    gap: 0;
    transform: translateX(-10%);
}

.hero__slider span {
    width: 260px;
    height: 10px;
    background: var(--wolff-blue);
}

.hero__slider span:last-child {
    background: linear-gradient(90deg, var(--wolff-blue) 44%, var(--wolff-white) 44%);
}

.section {
    padding: 74px 0;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section h2,
.image-text h2,
.footer-info h2 {
    margin: 0;
    color: var(--wolff-green);
    font-family: var(--wolff-heading);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.25;
}

.text-link {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.text-link span {
    color: var(--wolff-green);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--wolff-blue);
}

.product-card__brand {
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.3;
}

.product-card h3 {
    margin: 0;
    color: var(--wolff-green);
    font-family: var(--wolff-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
}

.image-text__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: 100px;
    align-items: center;
}

.image-text--right .image-text__media {
    order: 2;
}

.image-text__media img {
    width: 100%;
    aspect-ratio: 743 / 458;
    object-fit: cover;
}

.prose {
    max-width: 540px;
    margin: 22px 0 30px;
}

.services {
    background: rgba(192, 216, 231, .25);
}

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

.service-card {
    display: flex;
    min-height: 464px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 70px 48px 36px;
    background: rgba(192, 216, 231, .45);
    text-align: center;
}

.service-card h3 {
    margin: 0;
    color: var(--wolff-green);
    font-family: var(--wolff-heading);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    white-space: pre-line;
}

.service-card img {
    max-height: 284px;
    object-fit: contain;
}

.footer-info {
    padding: 86px 0;
    color: var(--wolff-white);
    background: var(--wolff-green);
}

.footer-info__grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr 0.75fr 1.5fr;
    gap: 120px;
    align-items: start;
}

.footer-info__brand img {
    width: 214px;
    margin-bottom: 24px;
}

.footer-info__brand strong {
    display: block;
    margin-left: 14px;
    font-size: 24px;
}

.footer-info h2 {
    color: var(--wolff-white);
    font-size: 32px;
}

.footer-info__text {
    margin-top: 24px;
}

.opening-hours {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 42px;
    margin: 24px 0 0;
}

.opening-hours dt,
.opening-hours dd {
    margin: 0;
}

@media (max-width: 1100px) {
    .header-main {
        gap: 24px;
    }

    .primary-nav__list {
        gap: 22px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .image-text__grid,
    .footer-info__grid {
        gap: 48px;
    }

    .service-grid {
        gap: 28px;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .topbar__inner {
        min-height: auto;
        padding-block: 10px;
        flex-wrap: wrap;
    }

    .topbar__hours {
        width: 100%;
        margin-left: 0;
    }

    .header-main {
        min-height: 92px;
        justify-content: space-between;
    }

    .site-logo {
        width: 116px;
        min-height: 92px;
    }

    .site-logo img {
        width: 92px;
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        padding: 20px 24px;
        background: var(--wolff-white);
        box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav__list {
        display: grid;
        gap: 14px;
    }

    .header-main__cta {
        display: none;
    }

    .hero,
    .hero__inner {
        min-height: 520px;
    }

    .hero__panel {
        padding: 38px 28px;
    }

    .hero__slider {
        display: none;
    }

    .product-grid,
    .service-grid,
    .image-text__grid,
    .footer-info__grid {
        grid-template-columns: 1fr;
    }

    .image-text--right .image-text__media {
        order: 0;
    }

    .service-card {
        min-height: 360px;
    }

    .footer-info__grid {
        gap: 36px;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 52px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .button {
        width: 100%;
    }

    .hero__actions,
    .image-text__actions {
        width: 100%;
    }
}
