:root {
    --green: #006b50;
    --green-dark: #004838;
    --green-soft: #e8f5ef;
    --gold: #d6a354;
    --gold-dark: #b88638;
    --cream: #fffaf1;
    --paper: #ffffff;
    --ink: #17211d;
    --muted: #68756f;
    --line: rgba(0, 107, 80, .14);
    --shadow: 0 24px 70px rgba(0, 45, 33, .13);
    --radius: 24px;
    --header-h: 126px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--cream);
    transition: opacity .45s ease, visibility .45s ease;
}

.site-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    box-shadow: var(--shadow);
    animation: pulse 1.1s ease infinite alternate;
}

.loader-mark img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

@keyframes pulse {
    from { transform: scale(.96); }
    to { transform: scale(1.04); }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled .mainbar {
    background: rgba(255, 250, 241, .94);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 50px rgba(0, 37, 27, .08);
}

.topbar {
    background: var(--green-dark);
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
}

.topbar-inner {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar a,
.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.topbar-right a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: rgba(255,255,255,.08);
    transition: .25s ease;
}

.topbar-right a:hover {
    background: var(--gold);
    color: var(--green-dark);
}

.mainbar {
    background: rgba(255, 250, 241, .88);
    transition: .25s ease;
}

.mainbar-inner {
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 210px;
}

.brand img {
    width: 205px;
    height: 92px;
    object-fit: contain;
    object-position: left center;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}

.nav-link {
    position: relative;
    padding: 12px 15px;
    color: #24342e;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    transition: .25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
    background: rgba(0, 107, 80, .08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 16px 36px rgba(0, 107, 80, .22);
}

.btn-light {
    background: rgba(255,255,255,.9);
    color: var(--green-dark);
}

.btn-outline {
    background: #fff;
    color: var(--green);
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(0, 55, 38, .08);
}

.btn.full {
    width: 100%;
}

.mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    padding: 12px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--green-dark);
    border-radius: 99px;
    transition: .25s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 780px;
    background: var(--green-dark);
    overflow: hidden;
}

.hero-slider,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: opacity .8s ease, transform 1.4s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 40, 29, .88), rgba(0, 70, 52, .54), rgba(0,0,0,.18)),
        linear-gradient(0deg, rgba(0,0,0,.38), transparent 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 780px;
    padding-top: var(--header-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
}

.eyebrow.dark {
    color: var(--green);
}

.hero h1 {
    width: min(760px, 100%);
    font-family: "Marcellus", serif;
    font-size: clamp(44px, 7vw, 84px);
    line-height: .98;
    letter-spacing: -.045em;
    margin-bottom: 22px;
}

.hero p {
    width: min(620px, 100%);
    color: rgba(255,255,255,.86);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 34px;
}

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

.hero-controls {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 135px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: .25s ease;
}

.hero-dot.active {
    width: 36px;
    border-radius: 999px;
    background: var(--gold);
}

.hero-info-card {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    width: min(980px, calc(100% - 40px));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 70px rgba(0,0,0,.24);
}

.hero-info-card div {
    padding: 24px 28px;
    border-right: 1px solid rgba(0,107,80,.12);
}

.hero-info-card div:last-child {
    border-right: 0;
}

.hero-info-card strong,
.hero-info-card span {
    display: block;
}

.hero-info-card strong {
    color: var(--green-dark);
    font-size: 18px;
    margin-bottom: 6px;
}

.hero-info-card span {
    color: var(--muted);
    font-size: 14px;
}

.feature-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 28px 0;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, #fbf8ef);
    border: 1px solid rgba(0,107,80,.1);
}

.feature-item i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--green-soft);
    color: var(--green);
}

.feature-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.section {
    padding: 96px 0;
}

.section-heading {
    width: min(720px, 100%);
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading.align-left {
    margin: 0;
    text-align: left;
}

.section-heading h2,
.about-content h2,
.contact-card h2 {
    font-family: "Marcellus", serif;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.08;
    letter-spacing: -.035em;
    color: var(--green-dark);
    margin-bottom: 14px;
}

.section-heading p,
.about-content p,
.contact-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.category-card {
    background: #fff;
    border: 1px solid rgba(0,107,80,.1);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 57, 41, .08);
    transition: .28s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.category-img {
    height: 210px;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
}

.category-body {
    padding: 24px;
}

.category-body span {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 10px;
}

.category-body h3 {
    color: var(--green-dark);
    font-size: 22px;
    margin-bottom: 10px;
}

.category-body p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

.menu-section {
    background:
        radial-gradient(circle at top left, rgba(0,107,80,.12), transparent 34%),
        #fff;
}

.menu-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.menu-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    flex-wrap: wrap;
}

.menu-tab {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    background: transparent;
    color: var(--green-dark);
    font-weight: 900;
    cursor: pointer;
    transition: .25s ease;
}

.menu-tab.active,
.menu-tab:hover {
    background: var(--green);
    color: #fff;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.menu-card {
    display: none;
    align-items: stretch;
    min-height: 172px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,107,80,.1);
    box-shadow: 0 16px 50px rgba(0, 57, 41, .06);
    animation: menuIn .35s ease both;
}

.menu-card.show {
    display: flex;
}

@keyframes menuIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-card-img {
    width: 190px;
    flex: 0 0 190px;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
}

.menu-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.menu-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 12px;
}

.menu-title-row h3 {
    color: var(--green-dark);
    font-size: 21px;
}

.menu-title-row strong {
    color: var(--gold-dark);
    font-size: 20px;
    white-space: nowrap;
}

.menu-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 520px;
}

.about-main-img {
    position: absolute;
    inset: 0 55px 0 0;
    border-radius: 32px;
    background-image: url('https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1100&q=80');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.about-main-img::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.54);
    border-radius: 24px;
}

.about-badge {
    position: absolute;
    right: 0;
    bottom: 58px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--green);
    color: #fff;
    border: 10px solid var(--cream);
    box-shadow: 0 18px 50px rgba(0,75,54,.22);
}

.about-badge strong,
.about-badge span {
    display: block;
}

.about-badge strong {
    font-family: "Marcellus", serif;
    font-size: 32px;
    margin-bottom: 4px;
}

.about-badge span {
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 800;
}

.about-content p + p {
    margin-top: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.stats-grid div {
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
}

.stats-grid strong,
.stats-grid span {
    display: block;
}

.stats-grid strong {
    color: var(--green);
    font-size: 32px;
    margin-bottom: 6px;
}

.stats-grid span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.gallery-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    box-shadow: 0 14px 40px rgba(0, 57, 41, .09);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,40,29,.72), transparent 62%);
    opacity: .88;
    transition: .25s ease;
}

.gallery-item span {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
}

.gallery-item:hover::before {
    opacity: 1;
}

.contact-section {
    position: relative;
    padding: 96px 0;
    background:
        linear-gradient(90deg, rgba(0, 55, 41, .94), rgba(0, 107, 80, .84)),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1800&q=80') center/cover;
    color: #fff;
}

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

.contact-card h2 {
    color: #fff;
}

.contact-card p {
    color: rgba(255,255,255,.78);
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-list a,
.contact-list p {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    color: #fff;
    font-weight: 800;
}

.contact-list i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--green-dark);
    background: var(--gold);
}

.contact-form {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--green-dark);
    font-size: 24px;
    margin-bottom: 20px;
}

.form-row {
    margin-bottom: 14px;
}

.form-row label {
    display: block;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 7px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid rgba(0,107,80,.14);
    outline: none;
    border-radius: 16px;
    padding: 14px 15px;
    background: #fff;
    color: var(--ink);
    transition: .25s ease;
}

.form-row textarea {
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0,107,80,.1);
}

.form-note {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 12px;
}

.footer {
    background: #f7efe1;
    border-top: 1px solid rgba(0,107,80,.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .8fr .9fr;
    gap: 34px;
    padding: 58px 0;
}

.footer-brand img {
    width: 160px;
    height: 90px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 14px;
}

.footer-brand p,
.footer-col p,
.footer-col a,
.footer-bottom {
    color: var(--muted);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--green);
    border: 1px solid var(--line);
    transition: .25s ease;
}

.footer-social a:hover {
    background: var(--green);
    color: #fff;
}

.footer-col h4 {
    color: var(--green-dark);
    margin-bottom: 16px;
    font-size: 17px;
}

.footer-col a,
.footer-col p,
.footer-col strong {
    display: block;
    margin-bottom: 9px;
}

.footer-col strong {
    color: var(--green);
    font-size: 20px;
}

.footer-phone {
    color: var(--green) !important;
    font-weight: 900;
}

.footer-bottom {
    border-top: 1px solid rgba(0,107,80,.12);
    font-size: 13px;
}

.footer-bottom-inner {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.floating-whatsapp,
.back-to-top {
    position: fixed;
    z-index: 999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(0, 46, 34, .2);
}

.floating-whatsapp {
    right: 22px;
    bottom: 22px;
    background: #25d366;
    color: #fff;
    font-size: 26px;
}

.back-to-top {
    right: 22px;
    bottom: 88px;
    background: #fff;
    color: var(--green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .category-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-top,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-grid {
        gap: 36px;
    }

    .menu-top {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 920px) {
    :root {
        --header-h: 98px;
    }

    .topbar {
        display: none;
    }

    .mainbar-inner {
        height: 98px;
    }

    .brand img {
        width: 165px;
        height: 78px;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .nav {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 108px;
        display: grid;
        gap: 8px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 250, 241, .98);
        box-shadow: var(--shadow);
        border: 1px solid var(--line);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: .25s ease;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        display: block;
        padding: 14px 16px;
    }

    .hero,
    .hero-content {
        min-height: 720px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 58px);
    }

    .hero p {
        font-size: 16px;
    }

    .hero-info-card {
        grid-template-columns: 1fr;
        bottom: 24px;
    }

    .hero-info-card div {
        padding: 15px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(0,107,80,.12);
    }

    .hero-info-card div:last-child {
        border-bottom: 0;
    }

    .hero-controls {
        bottom: 205px;
    }

    .menu-list {
        grid-template-columns: 1fr;
    }

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

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section,
    .contact-section {
        padding: 68px 0;
    }

    .hero,
    .hero-content {
        min-height: 760px;
    }

    .hero-content {
        justify-content: flex-start;
        padding-top: 150px;
    }

    .hero-buttons {
        width: 100%;
    }

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

    .feature-grid,
    .category-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .menu-tabs {
        width: 100%;
        border-radius: 22px;
    }

    .menu-tab {
        flex: 1 1 calc(50% - 8px);
    }

    .menu-card,
    .menu-card.show {
        display: none;
    }

    .menu-card.show {
        display: block;
    }

    .menu-card-img {
        width: 100%;
        height: 210px;
    }

    .about-images {
        min-height: 420px;
    }

    .about-main-img {
        right: 0;
    }

    .about-badge {
        width: 150px;
        height: 150px;
        right: 14px;
        bottom: -24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-form {
        padding: 22px;
    }

    .footer-bottom-inner {
        height: auto;
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-whatsapp,
    .back-to-top {
        width: 50px;
        height: 50px;
        right: 16px;
    }
}
