:root {
    --green-900: #263126;
    --green-800: #334133;
    --green-700: #4b5d49;
    --green-600: #70815f;
    --green-500: #8da17d;
    --green-200: #dfe6d5;
    --green-100: #eef2e7;
    --gold-500: #b89b63;
    --gold-300: #d8c29a;
    --cream-100: #f7f3ea;
    --cream-050: #fcfaf5;
    --ink-900: #332d28;
    --ink-700: #665f58;
    --ink-500: #91877e;
    --white: #ffffff;
    --border: rgba(51, 45, 40, 0.11);
    --shadow-soft: 0 18px 45px rgba(38, 49, 38, 0.08);
    --shadow-strong: 0 30px 70px rgba(38, 49, 38, 0.16);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --transition: 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink-900);
    background:
        radial-gradient(circle at top left, rgba(184, 155, 99, 0.16), transparent 30%),
        radial-gradient(circle at right 10%, rgba(112, 129, 95, 0.1), transparent 28%),
        linear-gradient(180deg, var(--cream-050) 0%, #f5f1e8 45%, #fbf8f1 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: 0;
}

ul {
    list-style: none;
}

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

.section-space {
    padding: 110px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-kicker,
.eyebrow {
    color: var(--green-700);
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 46px 0;
}

.section-heading-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.story-copy h2,
.salad-copy h2,
.cta-box h2 {
    margin: 16px 0 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 4.6vw, 4.7rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: var(--ink-900);
}

.section-heading p,
.story-copy p,
.salad-copy p,
.footer-brand p,
.feature-card p,
.dish-content p,
.trust-grid p,
.cta-box p,
.hero-lead,
.hero-highlights span {
    color: var(--ink-700);
    font-size: 1.02rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    box-shadow: 0 20px 40px rgba(75, 93, 73, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 28px 55px rgba(75, 93, 73, 0.32);
}

.btn-secondary {
    color: var(--ink-900);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
}

.btn-large {
    padding: 16px 28px;
}

.btn-nav {
    padding: 13px 22px;
    font-size: 0.96rem;
}

.btn-inline {
    margin-top: 24px;
    padding: 15px 24px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, #25d366, #159a47);
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.36);
    font-size: 1.65rem;
}

.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, 0.3);
    animation: pulse 2.3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

.topbar {
    background: var(--green-900);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.topbar-content,
.topbar-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar-content {
    padding: 12px 0;
}

.topbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f5e8c9;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(252, 250, 245, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(252, 250, 245, 0.94);
    border-color: rgba(51, 45, 40, 0.07);
    box-shadow: 0 15px 35px rgba(38, 49, 38, 0.06);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(112, 129, 95, 0.22);
}

.brand strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.9;
    color: var(--green-800);
}

.brand span {
    display: block;
    margin-top: 4px;
    color: var(--ink-700);
    font-size: 0.94rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    position: relative;
    font-weight: 700;
    color: var(--ink-900);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green-700), var(--gold-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
}

.desktop-only {
    display: inline-flex;
}

.hero {
    position: relative;
    padding: 60px 0 54px;
    overflow: clip;
}

.hero-backdrop,
.hero-texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-backdrop {
    background:
        linear-gradient(90deg, rgba(252, 250, 245, 0.96) 0%, rgba(252, 250, 245, 0.88) 38%, rgba(252, 250, 245, 0.58) 62%, rgba(252, 250, 245, 0.76) 100%),
        url("../assets/img/LogoFundoBlur.jpeg") center/cover no-repeat;
    opacity: 0.95;
}

.hero-texture::before,
.hero-texture::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
}

.hero-texture::before {
    width: 380px;
    height: 380px;
    right: -80px;
    top: 60px;
    background: rgba(184, 155, 99, 0.12);
}

.hero-texture::after {
    width: 300px;
    height: 300px;
    left: -90px;
    bottom: 20px;
    background: rgba(112, 129, 95, 0.12);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
    gap: 34px;
    align-items: center;
}

.hero-copy h1 {
    margin: 14px 0 18px;
    max-width: 700px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: var(--ink-900);
}

.hero-copy h1 span {
    color: var(--green-700);
}

.hero-lead {
    max-width: 640px;
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hero-quick-actions {
    margin-top: 22px;
}

.hero-quick-actions p {
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--ink-900);
}

.quick-action-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-action {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(51, 45, 40, 0.08);
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink-900);
    font-weight: 700;
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.quick-action:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(112, 129, 95, 0.28);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.hero-highlights article {
    padding: 16px 16px 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.hero-highlights strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.32rem;
    color: var(--green-800);
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-main-card,
.hero-small-card {
    position: absolute;
    overflow: hidden;
    border-radius: calc(var(--radius-xl) + 2px);
    box-shadow: var(--shadow-strong);
}

.hero-main-card {
    inset: 0 52px 0 0;
}

.hero-main-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 18, 15, 0.02) 35%, rgba(20, 18, 15, 0.55) 100%);
}

.hero-main-card img,
.hero-small-card img {
    height: 100%;
    object-fit: cover;
}

.hero-card-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    padding: 18px 18px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.hero-card-caption span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-card-caption strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    line-height: 0.95;
}

.hero-small-card {
    width: 170px;
    height: 195px;
    right: 0;
    border: 8px solid rgba(252, 250, 245, 0.9);
}

.hero-small-top {
    top: 34px;
}

.hero-small-bottom {
    bottom: 28px;
}

.trust-strip {
    margin-top: -18px;
    padding-bottom: 28px;
}

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

.trust-grid article,
.feature-card,
.dish-card,
.footer-card {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-soft);
}

.trust-grid article {
    padding: 24px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.trust-grid i,
.feature-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.22rem;
    color: var(--green-800);
    background: linear-gradient(135deg, rgba(112, 129, 95, 0.16), rgba(184, 155, 99, 0.16));
}

.trust-grid h3,
.feature-card h3,
.dish-content h3,
.footer-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--ink-900);
}

.story-grid,
.salad-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    align-items: center;
}

.story-media {
    position: relative;
    min-height: 620px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.story-media img {
    height: 100%;
    object-fit: cover;
}

.story-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    max-width: 360px;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(38, 49, 38, 0.78);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
}

.story-badge span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-300);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.story-badge strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    line-height: 0.96;
}

.story-copy p + p {
    margin-top: 16px;
}

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

.story-stats article {
    padding: 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(239, 243, 234, 0.92));
    border: 1px solid var(--border);
}

.story-stats strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.2rem;
    color: var(--green-800);
}

.story-stats span {
    display: block;
    color: var(--ink-700);
    font-size: 0.96rem;
}

.features-section {
    position: relative;
}

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

.feature-card {
    padding: 28px;
}

.feature-icon {
    margin-bottom: 20px;
}

.showcase-section {
    background:
        linear-gradient(180deg, rgba(239, 243, 234, 0.64) 0%, rgba(251, 248, 241, 0.2) 100%);
}

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

.dish-card {
    overflow: hidden;
}

.dish-media {
    aspect-ratio: 4 / 4.6;
    overflow: hidden;
}

.dish-media img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.dish-card:hover .dish-media img {
    transform: scale(1.04);
}

.dish-content {
    padding: 22px;
}

.dish-content span {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-700);
}

.buffet-gallery-section {
    background:
        radial-gradient(circle at top right, rgba(184, 155, 99, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 243, 234, 0.94));
}

.mosaic-grid {
    column-count: 5;
    column-gap: 18px;
}

.mosaic-card {
    position: relative;
    margin: 0 0 18px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    background: #ddd;
}

.mosaic-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 18, 15, 0.02) 40%, rgba(20, 18, 15, 0.7) 100%);
}

.mosaic-card img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.mosaic-card:hover img {
    transform: scale(1.04);
}

.mosaic-card figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
}

.salad-section {
    position: relative;
}

.salad-grid {
    gap: 64px;
}

.salad-visual {
    position: relative;
    min-height: 620px;
}

.salad-visual-main,
.salad-visual-accent {
    position: absolute;
    box-shadow: var(--shadow-strong);
    object-fit: cover;
}

.salad-visual-main {
    inset: 0 60px 60px 0;
    border-radius: var(--radius-xl);
}

.salad-visual-accent {
    width: 250px;
    height: 280px;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    border: 8px solid rgba(252, 250, 245, 0.9);
}

.ambience-section {
    background:
        radial-gradient(circle at left top, rgba(112, 129, 95, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(246, 242, 234, 0.8));
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 20px;
}

.gallery-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    min-height: 360px;
}

.gallery-card-large {
    min-height: 520px;
}

.gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-card:hover img {
    transform: scale(1.03);
}

.cta-section {
    padding: 40px 0 0;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 40px 42px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(38, 49, 38, 0.96), rgba(75, 93, 73, 0.95)),
        url("../assets/img/LogoFundoBlur.jpeg") center/cover no-repeat;
    box-shadow: var(--shadow-strong);
}

.cta-box .section-kicker,
.cta-box h2 {
    color: var(--white);
}

.cta-box h2 {
    max-width: 680px;
}

.map-section {
    padding-top: 76px;
}

.map-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: stretch;
}

.map-copy h2 {
    margin: 16px 0 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 4.3vw, 4.4rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.map-copy p {
    max-width: 520px;
    margin-bottom: 26px;
    color: var(--ink-700);
    font-size: 1.02rem;
}

.map-details {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.map-details article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
}

.map-details i {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-800);
    background: linear-gradient(135deg, rgba(112, 129, 95, 0.16), rgba(184, 155, 99, 0.16));
}

.map-details strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ink-900);
}

.map-details span {
    color: var(--ink-700);
}

.map-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background: rgba(255, 255, 255, 0.82);
}

.map-frame {
    position: relative;
    height: 100%;
    min-height: 520px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(1.08) contrast(1.02);
}

.map-floating-link {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(38, 49, 38, 0.88);
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 18px 35px rgba(38, 49, 38, 0.24);
    backdrop-filter: blur(12px);
}

.footer {
    padding-top: 90px;
}

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

.footer-brand {
    padding-right: 18px;
}

.footer-brand-link {
    margin-bottom: 18px;
}

.footer-card {
    padding: 24px;
}

.footer-card ul {
    display: grid;
    gap: 14px;
}

.footer-card li {
    display: flex;
    gap: 10px;
    color: var(--ink-700);
}

.footer-card i {
    width: 20px;
    margin-top: 3px;
    color: var(--green-700);
}

.footer-link {
    color: var(--green-700);
    font-weight: 800;
}

@media (max-width: 1080px) {
    .desktop-only {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        gap: 5px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(51, 45, 40, 0.08);
        background: rgba(255, 255, 255, 0.88);
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--ink-900);
        transition: transform var(--transition), opacity var(--transition);
    }

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

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

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

    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        padding: 22px;
        border-radius: 24px;
        background: rgba(252, 250, 245, 0.98);
        border: 1px solid rgba(51, 45, 40, 0.08);
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero-grid,
    .story-grid,
    .salad-grid,
    .map-grid,
    .footer-grid,
    .gallery-grid,
    .trust-grid,
    .features-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .mosaic-grid {
        column-count: 3;
    }

    .hero-visual,
    .salad-visual {
        min-height: auto;
    }

    .hero-main-card,
    .hero-small-card,
    .salad-visual-main,
    .salad-visual-accent {
        position: relative;
        inset: auto;
        right: auto;
        bottom: auto;
        top: auto;
    }

    .hero-visual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero-main-card {
        grid-column: 1 / -1;
        height: 460px;
    }

    .hero-small-card {
        width: 100%;
        height: 220px;
    }

    .salad-visual {
        display: grid;
        gap: 16px;
    }

    .salad-visual-main {
        height: 480px;
    }

    .salad-visual-accent {
        width: 100%;
        height: 260px;
    }

    .map-frame {
        min-height: 420px;
    }

    .gallery-card,
    .gallery-card-large,
    .story-media {
        min-height: 420px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .section-space {
        padding: 88px 0;
    }

    .topbar-content,
    .topbar-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-highlights,
    .story-stats {
        grid-template-columns: 1fr;
    }

    .hero-main-card {
        height: 360px;
    }

    .brand strong {
        font-size: 1.7rem;
    }

    .brand img {
        width: 68px;
        height: 68px;
    }
}

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

    .nav {
        min-height: 78px;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 14vw, 4.1rem);
    }

    .btn-large,
    .btn-nav,
    .btn-inline {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .quick-action-list {
        flex-direction: column;
    }

    .quick-action {
        width: 100%;
        justify-content: center;
    }

    .hero-main-card {
        height: 320px;
    }

    .hero-small-card {
        height: 160px;
    }

    .mosaic-grid {
        column-count: 2;
        column-gap: 12px;
    }

    .mosaic-card {
        margin-bottom: 12px;
        border-radius: 18px;
    }

    .map-frame {
        min-height: 320px;
    }

    .map-floating-link {
        left: 14px;
        right: 14px;
        justify-content: center;
        bottom: 14px;
    }

    .trust-grid article,
    .feature-card,
    .dish-content,
    .footer-card,
    .cta-box {
        padding-left: 20px;
        padding-right: 20px;
    }

    .story-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        font-size: 1.45rem;
    }
}
