:root {
    --header-height: 74px;
    --bg: #f9f4ef;
    --bg-soft: #f3e6d9;
    --surface: #fffdfb;
    --text: #3b2525;
    --muted: #6d5050;
    --primary: #7e2c3b;
    --primary-deep: #621f2d;
    --line: #e7d8cb;
    --shadow: 0 14px 40px rgba(84, 34, 45, 0.13);
    --radius-lg: 12px;
    --radius-md: 12px;
    --container: min(1120px, 92vw);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 14px);
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 14px);
}

#top-anchor {
    scroll-margin-top: 0;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Verdana, Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 10% -5%, #f8d4cc 0, transparent 34%),
        radial-gradient(circle at 90% 10%, #ecd5c0 0, transparent 38%),
        var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", Times, serif;
    line-height: 1.1;
    margin: 0 0 0.6rem;
    letter-spacing: 0.01em;
}

p {
    margin: 0 0 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding: clamp(1.05rem, 1.8vw, 1.8rem) 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.bg-glow {
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.4;
}

.bg-glow-top {
    width: 340px;
    height: 340px;
    background: #d89a95;
    top: -80px;
    left: -120px;
}

.bg-glow-bottom {
    width: 280px;
    height: 280px;
    background: #e3be9f;
    bottom: -70px;
    right: -100px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 15;
    background: rgba(249, 244, 239, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(126, 44, 59, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 1rem;
}

.logo {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-deep);
}

.nav {
    display: flex;
    gap: 1rem;
    font-weight: 600;
    color: var(--muted);
}

.nav a {
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.nav a:hover {
    color: var(--primary-deep);
    background: rgba(126, 44, 59, 0.12);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    font-weight: 700;
}

.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("hero.webp") center center / cover no-repeat;
    transform: scale(1.03);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(36, 14, 19, 0.7), rgba(36, 14, 19, 0.7));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    justify-items: center;
    min-height: clamp(360px, 62vh, 560px);
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 760px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eyebrow {
    color: #f8dacc;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    bottom: 20px;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.7rem);
    margin-bottom: 1rem;
}

.subtitle {
    color: rgba(255, 250, 246, 0.92);
    max-width: 52ch;
    margin-bottom: 1.5rem;
}

.small-note {
    color: rgba(255, 245, 236, 0.86);
    font-size: 0.95rem;
    margin-top: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    padding: 0.85rem 1.3rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 24px rgba(126, 44, 59, 0.25);
}

.btn-primary:hover {
    background: var(--primary-deep);
}

.btn-secondary {
    border: 1px solid var(--primary);
    color: var(--primary-deep);
    background: #fff;
}

.feature-list,
.delivery-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.feature-list li {
    padding: 1rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-align: left;
    min-height: 76px;
}

.feature-list li .bi {
    flex: 0 0 22px;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--primary);
}

.feature-list li span {
    display: block;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding-bottom: 1rem;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 0.9rem;
}

.card h3,
.card p,
.card .btn {
    margin-left: 1rem;
    margin-right: 1rem;
}

.price {
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 1rem;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
    display: grid;
    gap: 0.65rem;
}

.steps li {
    counter-increment: step;
    padding: 0.6rem 0 0.6rem 2.35rem;
    position: relative;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 0.86rem;
    background: var(--primary);
}

.order-box,
.delivery-box,
.cta-inner,
.footer-grid {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.order-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    padding: clamp(1.2rem, 3vw, 2rem);
    align-items: center;
    background: linear-gradient(135deg, #fff5ef 0%, #f3e0d2 100%);
}

.order-content .section-title {
    margin-bottom: 1rem;
}

.order-media img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
}

.delivery-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    padding: clamp(1.2rem, 3vw, 2rem);
    align-items: center;
    background: linear-gradient(135deg, #fff5ef 0%, #f3e0d2 100%);
}

.delivery-content .section-title {
    margin-bottom: 1rem;
}

.delivery-list {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.delivery-media img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
}

.delivery-price {
    color: var(--primary-deep);
    font-weight: 700;
}

.reviews-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.1rem;
}

.review-item {
    margin: 0;
    padding: 0.35rem 0 0.35rem 1rem;
    border-left: 2px solid rgba(126, 44, 59, 0.35);
}

.review-text {
    margin: 0 0 0.4rem;
    font-style: italic;
    color: var(--muted);
}

.review-author {
    margin: 0;
    font-weight: 700;
    color: var(--text);
}

.review-meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.cta {
    padding-top: 2.8rem;
}

.cta-inner {
    text-align: center;
    padding: clamp(1.7rem, 4vw, 2.8rem);
    background: linear-gradient(135deg, #fff5ef 0%, #f3e0d2 100%);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.footer {
    padding-top: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: clamp(1.2rem, 3vw, 2rem);
    align-items: start;
}

.footer-title {
    grid-column: 1 / -1;
    margin-bottom: 0.2rem;
}

.footer-grid p {
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.contact-item .bi {
    color: var(--primary);
    font-size: 1rem;
    line-height: 1;
}

.footer-address {
    grid-column: 1 / -1;
    font-weight: 600;
}

.footer-map {
    grid-column: 1 / -1;
    margin-top: 0.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
}

.footer-map iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 930px) {
    .feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .order-box,
    .delivery-box,
    .hero-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .order-media {
        order: 2;
    }

    .delivery-media {
        order: 2;
    }

}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        top: 74px;
        right: 4vw;
        left: 4vw;
        padding: 0.7rem;
        border-radius: 14px;
        background: #fdf7f1;
        border: 1px solid var(--line);
        display: none;
        flex-direction: column;
        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    h1 {
        font-size: clamp(1.2rem, 6vw, 1.4rem);
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}