:root {
    --ink: #1f2328;
    --muted: #667085;
    --paper: #f6f3ec;
    --line: #e7e0d5;
    --green: #22624d;
    --wine: #8e2f45;
    --gold: #c18a3d;
}

body {
    background: #fffaf2;
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    text-decoration: none;
}

.btn {
    border-radius: 8px;
    font-weight: 800;
}

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

.btn-primary:hover {
    background: #76273a;
    border-color: #76273a;
}

.site-header {
    background:
        linear-gradient(90deg, rgba(22, 25, 25, .92), rgba(22, 25, 25, .62)),
        url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1800&q=82");
    background-position: center;
    background-size: cover;
    color: #fff;
    min-height: 720px;
}

.nav-wrap {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 22px 12px;
}

.brand {
    align-items: center;
    color: #fff;
    display: flex;
    gap: 14px;
}

.brand img {
    border-radius: 10px;
    display: block;
    height: 58px;
    max-width: 58px;
    object-fit: contain;
    padding: 0;
    width: auto;
}

.brand-fallback {
    align-items: center;
    background: #fff;
    border-radius: 8px;
    color: var(--wine);
    display: flex;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    color: #fff;
    font-size: 1.28rem;
    font-weight: 900;
}

.brand-copy small {
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 700;
    margin-top: 4px;
}

.nav-actions {
    align-items: center;
    display: flex;
    gap: 22px;
}

.nav-actions a {
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    padding-bottom: 70px;
    padding-top: 82px;
}

.section-kicker {
    color: var(--gold);
    display: inline-block;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: .98;
    margin-bottom: 24px;
    max-width: 880px;
}

.hero-copy p {
    color: rgba(255, 255, 255, .84);
    font-size: 1.18rem;
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 710px;
}

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

.hero-panel {
    align-items: end;
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    justify-items: center;
}

.phone-mockup,
.operation-card,
.menu-preview,
.solution-card,
.feature-grid article {
    border-radius: 8px;
}

.phone-mockup {
    background: #fdfbf7;
    color: var(--ink);
    max-width: 340px;
    padding: 18px;
    width: 100%;
}

.mockup-top {
    background: #1f2328;
    border-radius: 999px;
    height: 8px;
    margin: 0 auto 22px;
    width: 82px;
}

.order-line {
    align-items: center;
    background: #f3eadf;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 15px;
}

.order-line.muted {
    background: #eef4ef;
}

.status-pill {
    background: var(--green);
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    margin-top: 16px;
    padding: 12px 14px;
    text-align: center;
}

.operation-card {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    max-width: 390px;
    padding: 22px;
    width: 100%;
}

.operation-card span,
.operation-card small {
    color: rgba(255, 255, 255, .76);
    display: block;
}

.operation-card strong {
    display: block;
    font-size: 1.45rem;
    margin: 4px 0 8px;
}

.choice-section,
.feature-section,
.proof-section {
    padding-bottom: 86px;
    padding-top: 86px;
}

.section-heading {
    margin-bottom: 30px;
    max-width: 760px;
}

.section-heading h2,
.included-grid h2,
.proof-copy h2,
.contact-grid h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.06;
    margin: 0;
}

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

.solution-card {
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

.solution-card.highlighted {
    border-color: rgba(142, 47, 69, .36);
}

.solution-media {
    background-position: center;
    background-size: cover;
    min-height: 240px;
}

.menu-media {
    background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=82");
}

.system-media {
    background-image: url("https://images.unsplash.com/photo-1559329007-40df8a9345d8?auto=format&fit=crop&w=1200&q=82");
}

.solution-body {
    padding: 26px;
}

.tag {
    background: #f3eadf;
    border-radius: 999px;
    color: #6e4f28;
    display: inline-block;
    font-size: .78rem;
    font-weight: 900;
    margin-bottom: 14px;
    padding: 7px 11px;
}

.solution-body h3 {
    font-size: 1.65rem;
    margin-bottom: 12px;
}

.solution-body p,
.feature-grid p,
.included-grid p,
.proof-copy p,
.contact-grid p {
    color: var(--muted);
    line-height: 1.65;
}

.solution-body ul {
    color: #38404a;
    margin: 18px 0 22px;
    padding-left: 19px;
}

.solution-body li {
    margin-bottom: 8px;
}

.price-row,
.consult-row {
    align-items: baseline;
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.price-row strong {
    color: var(--wine);
    font-size: 2rem;
}

.consult-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
}

.consult-row strong {
    font-size: 1.3rem;
}

.consult-row span,
.price-row span {
    color: var(--muted);
}

.included-band {
    background: var(--green);
    color: #fff;
    padding: 68px 0;
}

.included-grid {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
}

.included-grid p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    margin: 0;
}

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

.feature-grid article {
    background: #fff;
    border: 1px solid var(--line);
    padding: 26px;
}

.feature-grid span {
    color: var(--wine);
    display: block;
    font-weight: 900;
    margin-bottom: 18px;
}

.feature-grid h3 {
    font-size: 1.25rem;
}

.proof-section {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr .8fr;
}

.menu-preview {
    background: #232323;
    color: #fff;
    padding: 24px;
}

.preview-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}

.preview-item {
    align-items: center;
    background: #fff;
    border-radius: 8px;
    color: var(--ink);
    display: grid;
    gap: 14px;
    grid-template-columns: 74px 1fr;
    margin-bottom: 12px;
    padding: 10px;
}

.preview-item div {
    background:
        linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .08)),
        url("https://images.unsplash.com/photo-1473093295043-cdd812d0e601?auto=format&fit=crop&w=300&q=80");
    background-position: center;
    background-size: cover;
    border-radius: 6px;
    height: 64px;
}

.preview-item p {
    margin: 0;
}

.preview-item strong {
    color: var(--wine);
    display: block;
}

.menu-preview a {
    color: #f3c77f;
    display: inline-block;
    font-weight: 800;
    margin-top: 8px;
}

.contact-band {
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 76px 0;
}

.contact-grid {
    align-items: center;
    display: grid;
    gap: 36px;
    grid-template-columns: 1fr .72fr;
}

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

@media (max-width: 991px) {
    .site-header {
        min-height: auto;
    }

    .hero-grid,
    .choice-grid,
    .included-grid,
    .feature-grid,
    .proof-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding-top: 48px;
    }
}

@media (max-width: 575px) {
    .nav-wrap {
        align-items: flex-start;
        gap: 16px;
    }

    .nav-actions {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: flex-end;
    }

    .hero-copy h1 {
        font-size: 2.45rem;
    }

    .hero-buttons .btn,
    .contact-actions .btn {
        width: 100%;
    }

    .choice-section,
    .feature-section,
    .proof-section {
        padding-bottom: 58px;
        padding-top: 58px;
    }
}
