:root {
    --primary: #1f6f4a;
    --secondary: #f7b267;
    --accent: #fff4df;
    --dark: #17211b;
    --muted: #66736b;
    --light: #ffffff;
    --cream: #fffaf1;
    --border: rgba(23, 33, 27, 0.1);
    --shadow: 0 24px 70px rgba(31, 111, 74, 0.15);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background:
        radial-gradient(circle at top left, rgba(247, 178, 103, 0.22), transparent 34rem),
        linear-gradient(180deg, var(--cream), #ffffff 36rem);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 82px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 99px;
    background: var(--secondary);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: clamp(2.45rem, 7vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

h2 {
    max-width: 780px;
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

p {
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 241, 0.84);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    font-weight: 900;
    background:
        linear-gradient(135deg, var(--primary), #174932),
        radial-gradient(circle at top right, var(--secondary), transparent);
    box-shadow: 0 12px 30px rgba(31, 111, 74, 0.24);
}

.brand strong {
    display: block;
    line-height: 1;
}

.brand small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: rgba(23, 33, 27, 0.78);
    font-size: 0.92rem;
    font-weight: 700;
}

.main-nav a:hover,
.main-nav .nav-cta {
    color: var(--dark);
    background: rgba(31, 111, 74, 0.08);
}

.nav-cta {
    border: 1px solid rgba(31, 111, 74, 0.16);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--dark);
    border-radius: 99px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 8% auto auto -7rem;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    background: rgba(31, 111, 74, 0.1);
    filter: blur(2px);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
    align-items: center;
    gap: 60px;
}

.hero-text {
    max-width: 620px;
    font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: var(--primary);
    box-shadow: 0 16px 36px rgba(31, 111, 74, 0.24);
}

.btn-soft {
    color: var(--dark);
    background: var(--accent);
    border-color: rgba(31, 111, 74, 0.1);
}

.btn-light {
    color: var(--dark);
    background: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-whatsapp {
    color: white;
    background: #1fa855;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 580px;
    margin-top: 34px;
}

.hero-stats div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-stats strong {
    display: block;
    color: var(--primary);
    font-size: 1.35rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.86rem;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.plate-card {
    position: relative;
    width: min(100%, 390px);
    min-height: 480px;
    padding: 28px;
    border: 1px solid rgba(31, 111, 74, 0.12);
    border-radius: 44px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 223, 0.78)),
        radial-gradient(circle at top right, rgba(247, 178, 103, 0.25), transparent 16rem);
    box-shadow: var(--shadow);
}

.plate {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 34px auto 0;
    border-radius: 50%;
    background:
        radial-gradient(circle, #ffffff 0 43%, #f6ead6 44% 49%, #ffffff 50% 100%);
    box-shadow:
        inset 0 0 0 18px rgba(255, 255, 255, 0.9),
        0 30px 60px rgba(23, 33, 27, 0.13);
}

.food {
    position: absolute;
    display: block;
}

.food-a {
    width: 92px;
    height: 92px;
    top: 74px;
    left: 52px;
    border-radius: 38% 62% 43% 57%;
    background: linear-gradient(135deg, #6fbf73, #2f7d46);
}

.food-b {
    width: 104px;
    height: 72px;
    top: 70px;
    right: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f2c078, #d86f45);
    transform: rotate(-18deg);
}

.food-c {
    width: 128px;
    height: 62px;
    bottom: 76px;
    left: 68px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, #fff2bb 0 10px, #f6d889 10px 20px);
}

.food-d {
    width: 60px;
    height: 60px;
    bottom: 84px;
    right: 70px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffffff, #f7b267 45%, #df6b46);
}

.label-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 18px;
    border-radius: 24px;
    background: var(--dark);
    color: white;
}

.label-card strong {
    display: block;
    margin-bottom: 5px;
}

.label-card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 18px 44px rgba(23, 33, 27, 0.14);
    animation: floatCard 4.8s ease-in-out infinite;
}

.floating-card span {
    font-size: 1.5rem;
}

.card-one {
    top: 72px;
    left: 0;
}

.card-two {
    right: 0;
    bottom: 110px;
    animation-delay: 1.2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.service-grid,
.process-grid,
.meal-grid,
.testimonial-grid {
    display: grid;
    gap: 22px;
}

.service-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-card,
.process-step,
.meal-card,
.testimonial-card,
.about-panel,
.quote-panel,
.contact-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 50px rgba(23, 33, 27, 0.06);
}

.service-card {
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: var(--accent);
    font-size: 1.8rem;
}

.service-card ul {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 22px;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.92rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.about {
    background:
        linear-gradient(135deg, rgba(31, 111, 74, 0.08), rgba(247, 178, 103, 0.13));
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    gap: 24px;
}

.about-panel {
    padding: 36px;
}

.trust-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.trust-list div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(31, 111, 74, 0.06);
}

.trust-list strong {
    display: block;
    margin-bottom: 4px;
}

.trust-list span {
    color: var(--muted);
}

.quote-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    padding: 36px;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 20% 20%, rgba(247, 178, 103, 0.6), transparent 12rem),
        linear-gradient(145deg, var(--primary), #143723);
}

.quote-panel::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -70px;
    top: -50px;
    border-radius: 50%;
    border: 34px solid rgba(255, 255, 255, 0.1);
}

.quote-mark {
    position: relative;
    z-index: 1;
    font-size: 6rem;
    line-height: 0.6;
    color: var(--secondary);
}

.quote-panel p {
    position: relative;
    z-index: 1;
    color: white;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.mini-rating {
    position: relative;
    z-index: 1;
}

.mini-rating span,
.mini-rating small {
    display: block;
}

.mini-rating small {
    color: rgba(255, 255, 255, 0.74);
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.process-step {
    padding: 24px;
}

.process-step span {
    display: inline-flex;
    margin-bottom: 26px;
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 900;
}

.gallery {
    background: var(--dark);
    color: white;
}

.gallery .section-heading p,
.gallery .meal-card p {
    color: rgba(255, 255, 255, 0.7);
}

.meal-grid {
    grid-template-columns: repeat(3, 1fr);
}

.meal-card {
    padding: 22px;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.meal-card strong {
    display: inline-flex;
    margin-top: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--dark);
    background: var(--secondary);
}

.meal-art {
    position: relative;
    height: 190px;
    margin-bottom: 20px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.34), transparent 7rem),
        linear-gradient(135deg, rgba(247, 178, 103, 0.45), rgba(31, 111, 74, 0.35));
}

.meal-art::before,
.meal-art::after,
.meal-art span {
    content: "";
    position: absolute;
    display: block;
}

.bowl-art::before {
    width: 150px;
    height: 76px;
    left: 50%;
    bottom: 38px;
    border-radius: 0 0 90px 90px;
    background: #fff4df;
    transform: translateX(-50%);
}

.bowl-art::after {
    width: 174px;
    height: 34px;
    left: 50%;
    bottom: 95px;
    border-radius: 50%;
    background: repeating-linear-gradient(90deg, #6fbf73 0 18px, #f7b267 18px 34px, #df6b46 34px 48px);
    transform: translateX(-50%);
}

.wrap-art::before {
    width: 180px;
    height: 70px;
    left: 50%;
    top: 62px;
    border-radius: 999px;
    background: #f3d5a0;
    transform: translateX(-50%) rotate(-8deg);
}

.wrap-art::after {
    width: 140px;
    height: 16px;
    left: 50%;
    top: 92px;
    border-radius: 999px;
    background: #2f7d46;
    transform: translateX(-50%) rotate(-8deg);
}

.platter-art::before {
    width: 210px;
    height: 118px;
    left: 50%;
    top: 44px;
    border-radius: 42px;
    background: #fff4df;
    transform: translateX(-50%);
}

.platter-art::after {
    width: 28px;
    height: 28px;
    left: 30%;
    top: 78px;
    border-radius: 50%;
    background: #df6b46;
    box-shadow:
        46px -8px 0 #6fbf73,
        88px 12px 0 #f7b267,
        118px -2px 0 #d86f45,
        66px 38px 0 #2f7d46;
}

.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
    padding: 28px;
}

.testimonial-card p {
    color: var(--dark);
    font-size: 1.05rem;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.faq {
    background: linear-gradient(180deg, #ffffff, var(--cream));
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.faq-item button {
    width: 100%;
    padding: 20px;
    border: 0;
    background: transparent;
    color: var(--dark);
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-item button::after {
    content: "+";
    float: right;
    color: var(--primary);
}

.faq-item.active button::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact {
    padding-top: 40px;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 36px;
    color: white;
    background:
        radial-gradient(circle at 10% 20%, rgba(247, 178, 103, 0.6), transparent 16rem),
        linear-gradient(135deg, var(--primary), #143723);
}

.contact-card h2 {
    margin-bottom: 12px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
    justify-content: flex-end;
    min-width: 280px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    padding: 14px 18px;
    border-radius: 999px;
    color: white;
    background: #1fa855;
    box-shadow: 0 18px 40px rgba(31, 168, 85, 0.32);
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 940px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 78px 16px auto 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: white;
        box-shadow: var(--shadow);
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 14px 16px;
    }

    .hero-grid,
    .about-grid,
    .faq-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 500px;
    }

    .service-grid,
    .meal-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-actions {
        justify-content: flex-start;
        min-width: 0;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .section {
        padding: 64px 0;
    }

    .brand small {
        display: none;
    }

    .hero {
        padding-top: 52px;
    }

    .hero-stats,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 460px;
    }

    .plate-card {
        min-height: 430px;
        border-radius: 34px;
    }

    .plate {
        width: 230px;
        height: 230px;
    }

    .food-a {
        top: 58px;
        left: 42px;
    }

    .food-b {
        top: 56px;
        right: 38px;
    }

    .food-c {
        bottom: 58px;
        left: 48px;
    }

    .food-d {
        bottom: 66px;
        right: 54px;
    }

    .floating-card {
        position: static;
        margin-top: 12px;
    }

    .card-one,
    .card-two {
        animation: none;
    }

    .about-panel,
    .quote-panel,
    .contact-card {
        padding: 24px;
    }

    .quote-panel {
        min-height: 330px;
    }

    .btn {
        width: 100%;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
    }
}