:root {
    --bg: #f7eddd;
    --bg-soft: #fef8ee;
    --ink: #221611;
    --muted: #5f4c3f;
    --brand: #8a2d17;
    --brand-deep: #54190b;
    --saffron: #e8a124;
    --leaf: #2f5d4b;
    --card: #fff8ef;
    --line: #e6d8c2;
    --shadow: 0 20px 45px rgba(34, 22, 17, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 15%, rgba(232, 161, 36, 0.22), transparent 35%),
        radial-gradient(circle at 85% 10%, rgba(47, 93, 75, 0.18), transparent 32%),
        linear-gradient(140deg, #fdf5e8 0%, #f7eddd 48%, #f2e5d2 100%);
    min-height: 100vh;
    overflow-x: clip;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image: radial-gradient(rgba(34, 22, 17, 0.13) 0.6px, transparent 0.6px);
    background-size: 3px 3px;
    z-index: 0;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 0.75rem;
    top: -60px;
    z-index: 100;
    background: #fff;
    color: #1f1f1f;
    border: 2px solid #1f1f1f;
    border-radius: 0.5rem;
    padding: 0.55rem 0.8rem;
    font-weight: 700;
}

.skip-link:focus {
    top: 0.75rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #ffcf73;
    outline-offset: 2px;
}

.container {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
    background: color-mix(in srgb, var(--bg-soft) 82%, transparent);
    border-bottom: 1px solid rgba(138, 45, 23, 0.14);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    font-family: "Prata", serif;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
}

.brand-mark {
    color: var(--brand);
    font-size: 1.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--muted);
    font-size: 0.93rem;
    flex-wrap: wrap;
}

.nav a[aria-current="page"] {
    color: var(--brand-deep);
    text-decoration: underline;
    text-underline-offset: 0.22rem;
}

.lang-switch {
    display: inline-flex;
    gap: 0.35rem;
    margin-left: 0.3rem;
}

.lang-link {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.lang-link.is-active {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.78rem 1.3rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(100deg, var(--brand) 0%, var(--brand-deep) 100%);
    box-shadow: 0 14px 30px rgba(84, 25, 11, 0.28);
}

.btn-ghost {
    border-color: rgba(47, 93, 75, 0.25);
    color: var(--leaf);
    background: rgba(255, 248, 239, 0.65);
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    padding: 4.2rem 0 2.8rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(232, 161, 36, 0.19);
    border: 1px solid rgba(232, 161, 36, 0.5);
}

h1 {
    font-family: "Prata", serif;
    margin: 0.95rem 0 1rem;
    font-size: clamp(2.1rem, 5.2vw, 4.1rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
}

.hero p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 60ch;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}

.hero-cards {
    margin-top: 1.7rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.chip {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    border-radius: 0.95rem;
    padding: 0.7rem;
    box-shadow: 0 10px 18px rgba(34, 22, 17, 0.07);
}

.chip strong {
    display: block;
    font-size: 1.05rem;
    color: var(--brand-deep);
    margin-bottom: 0.15rem;
}

.chip span {
    color: var(--muted);
    font-size: 0.82rem;
}

.hero-media {
    position: relative;
    border-radius: 1.7rem;
    overflow: hidden;
    border: 1px solid rgba(84, 25, 11, 0.18);
    box-shadow: var(--shadow);
    min-height: 450px;
    isolation: isolate;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(to top, rgba(18, 11, 7, 0.78), transparent);
    z-index: 1;
}

.hero-media video,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    background: color-mix(in srgb, #2a130b 78%, transparent);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.95rem;
    padding: 0.95rem 1rem;
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
}

.hero-badge p {
    margin: 0;
    color: #f5e8d8;
    font-size: 0.92rem;
}

.hero-badge strong {
    display: block;
    font-size: 1.03rem;
}

.section {
    padding: 3.8rem 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 1.6rem;
}

.section h2 {
    font-family: "Prata", serif;
    margin: 0 0 0.7rem;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    color: var(--brand-deep);
    line-height: 1.12;
}

.section p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

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

.menu-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 12px 22px rgba(34, 22, 17, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px rgba(34, 22, 17, 0.13);
}

.menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #fff;
}

.menu-card-body {
    padding: 1rem;
}

.menu-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
}

.menu-card-category {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand);
}

.meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.pill {
    font-size: 0.74rem;
    padding: 0.32rem 0.56rem;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pill-veg {
    background: rgba(47, 93, 75, 0.14);
    color: var(--leaf);
}

.pill-spice {
    background: rgba(138, 45, 23, 0.13);
    color: var(--brand);
}

.story {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.1rem;
    align-items: stretch;
}

.story-media {
    border-radius: 1.1rem;
    overflow: hidden;
    min-height: 300px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(34, 22, 17, 0.12);
}

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

.story-card {
    border-radius: 1.1rem;
    background: linear-gradient(140deg, rgba(255, 247, 236, 0.96), rgba(249, 236, 218, 0.93));
    border: 1px solid rgba(138, 45, 23, 0.16);
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.story-copy {
    display: grid;
    gap: 0.65rem;
}

.story-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.story-points {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.story-points li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--ink);
    line-height: 1.55;
}

.story-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--brand);
}

.faq-list {
    display: grid;
    gap: 0.7rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 0.95rem;
    background: color-mix(in srgb, var(--card) 90%, #fff 10%);
    box-shadow: 0 10px 18px rgba(34, 22, 17, 0.07);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 0.9rem 1rem;
    font-weight: 700;
    color: var(--brand-deep);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.1rem;
    line-height: 1;
    color: var(--brand);
    margin-top: 0.1rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 1rem 0.95rem;
    color: var(--muted);
    line-height: 1.65;
}

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

.stat {
    border: 1px solid rgba(47, 93, 75, 0.2);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.75rem;
}

.stat strong {
    display: block;
    color: var(--brand);
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.contact-wrap {
    background: linear-gradient(150deg, #3e1c11 0%, #572615 47%, #2a1712 100%);
    color: #fff7ec;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 243, 227, 0.15);
    box-shadow: 0 30px 60px rgba(38, 16, 10, 0.36);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
}

.contact-main,
.contact-map {
    padding: 1.65rem;
}

.contact-main h2 {
    color: #ffdfaf;
}

.contact-main p {
    color: #f6e7d2;
}

.required-note {
    margin-top: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
    color: #ffdfaf;
}

.alert {
    border-radius: 0.8rem;
    padding: 0.72rem 0.86rem;
    margin: 0.85rem 0;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(85, 182, 141, 0.18);
    border-color: rgba(147, 242, 199, 0.5);
    color: #d8ffef;
}

.alert-error {
    background: rgba(201, 72, 56, 0.2);
    border-color: rgba(254, 166, 157, 0.45);
    color: #ffe5e2;
}

.details {
    margin-top: 1.2rem;
    display: grid;
    gap: 0.65rem;
}

.details strong {
    color: #ffcf73;
}

.hours {
    margin-top: 1.1rem;
    border-top: 1px dashed rgba(255, 243, 227, 0.35);
    padding-top: 1rem;
    display: grid;
    gap: 0.36rem;
    font-size: 0.92rem;
}

.reservation-form {
    margin-top: 1rem;
    display: grid;
    gap: 0.7rem;
}

.contact-form {
    margin-top: 0.85rem;
    display: grid;
    gap: 0.7rem;
}

.contact-form-block {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 243, 227, 0.35);
}

.contact-form-block h3 {
    margin: 0;
    color: var(--contact-title, #ffdfaf);
    font-size: 1.1rem;
}

.contact-form-block p {
    margin: 0.45rem 0 0;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.field {
    display: grid;
    gap: 0.28rem;
    font-size: 0.88rem;
    color: #ffe8ca;
}

.field input,
.field select,
.field textarea {
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 243, 227, 0.36);
    background: rgba(255, 250, 244, 0.11);
    color: #fff9ee;
    padding: 0.66rem 0.7rem;
    font: inherit;
    outline: none;
    width: 100%;
}

.field-error {
    font-size: 0.78rem;
    color: #ffd2cc;
}

.field textarea {
    min-height: 80px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #ebd2b6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(255, 207, 115, 0.95);
    box-shadow: 0 0 0 2px rgba(255, 207, 115, 0.22);
}

.contact-map {
    position: relative;
    min-height: 320px;
}

.map-panel {
    position: absolute;
    inset: 1rem;
    border-radius: 0.95rem;
    overflow: hidden;
    border: 1px solid rgba(255, 243, 227, 0.22);
    background: rgba(32, 16, 11, 0.6);
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.1) contrast(1.1);
}

.map-note {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.9rem;
    background: linear-gradient(to top, rgba(20, 10, 6, 0.82), transparent);
    color: #fff6e9;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.page-hero {
    padding: 3.6rem 0 2rem;
}

.page-hero h1 {
    margin: 0 0 0.6rem;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.page-hero p {
    color: var(--muted);
    max-width: 70ch;
}

.menu-quick-nav {
    margin: 0 0 0.7rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--card) 88%, #fff 12%);
    box-shadow: 0 10px 18px rgba(34, 22, 17, 0.08);
}

.menu-quick-nav-label {
    margin: 0 0 0.55rem;
    color: var(--brand-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.menu-quick-nav-list {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
}

.menu-quick-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(138, 45, 23, 0.25);
    background: rgba(138, 45, 23, 0.08);
    color: var(--brand-deep);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.45rem 0.7rem;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-quick-link:hover {
    background: rgba(138, 45, 23, 0.16);
    border-color: rgba(138, 45, 23, 0.35);
    transform: translateY(-1px);
}

.menu-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.menu-table {
    scroll-margin-top: 6.2rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 18px rgba(34, 22, 17, 0.08);
}

.menu-table h3 {
    margin: 0 0 0.7rem;
    color: var(--brand-deep);
    font-family: "Prata", serif;
    font-size: 1.35rem;
}

.menu-section-description {
    margin: 0 0 0.65rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.menu-row {
    padding: 0.8rem 0;
    border-top: 1px dashed rgba(95, 76, 63, 0.3);
}

.menu-row:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.menu-row-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 700;
}

.menu-row p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.menu-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
    margin-top: 0.6rem;
}

.menu-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    background: rgba(138, 45, 23, 0.11);
    color: var(--brand-deep);
    border: 1px solid rgba(138, 45, 23, 0.22);
    border-radius: 999px;
    padding: 0.28rem 0.52rem;
}

.menu-tag img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.menu-tag-intolerance {
    background: rgba(47, 93, 75, 0.1);
    color: var(--leaf);
    border-color: rgba(47, 93, 75, 0.22);
}

.dietary-legend {
    display: grid;
    gap: 0.4rem;
}

.dietary-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.dietary-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

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

.gallery-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 10px 18px rgba(34, 22, 17, 0.08);
}

.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.gallery-card .caption {
    padding: 0.8rem;
    color: var(--muted);
    font-size: 0.88rem;
}

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

.legal-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 18px rgba(34, 22, 17, 0.08);
}

.legal-card h3 {
    margin: 0 0 0.5rem;
    color: var(--brand-deep);
    font-size: 1.1rem;
}

.footer {
    padding: 1.8rem 0 2.2rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.footer-links a[aria-current="page"] {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(95, 76, 63, 0.22);
    padding-top: 1rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease;
}

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

.whatsapp-fab {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    border-radius: 999px;
    background: linear-gradient(135deg, #1ea94f, #0d7e36);
    color: #fff;
    padding: 0.85rem 1rem;
    font-weight: 800;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
    transition: transform 180ms ease;
}

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

@media (max-width: 1060px) {
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid,
    .legal-grid,
    .menu-section-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 2.6rem;
    }

    .hero-media {
        min-height: 370px;
    }

    .story {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 240px;
    }
}

@media (max-width: 820px) {
    .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav {
        width: 100%;
    }
}

@media (max-width: 660px) {
    .container {
        width: min(1120px, calc(100% - 1.2rem));
    }

    .hero-cards,
    .menu-grid,
    .story-stats,
    .field-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
