:root {
    --bg: #efe7dc;
    --bg-soft: #f7f1e8;
    --surface: #fffbf5;
    --surface-strong: #fff9f1;
    --ink: #1f1a17;
    --muted: #665d55;
    --line: #d8ccc1;
    --accent: #9a4327;
    --accent-deep: #622515;
    --accent-soft: rgba(154, 67, 39, 0.12);
    --accent-glow: rgba(154, 67, 39, 0.18);
    --olive: #4f5a3d;
    --olive-glow: rgba(79, 90, 61, 0.18);
    --line-soft: rgba(216, 204, 193, 0.55);
    --header-bg: #fff9f1;
    --header-text: #1f1a17;
    --header-glass: rgba(255, 249, 241, 0.92);
    --footer-bg: #f7f1e8;
    --footer-text: #1f1a17;
    --footer-glass: rgba(247, 241, 232, 0.94);
    --shadow: 0 30px 80px rgba(24, 18, 13, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, var(--accent-glow), transparent 28rem),
        radial-gradient(circle at top right, var(--olive-glow), transparent 24rem),
        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 55%, var(--surface) 100%);
}

.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;
}

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

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.25rem clamp(1.2rem, 3vw, 2.4rem);
    color: var(--header-text);
    background: linear-gradient(180deg, var(--header-glass), var(--header-glass));
    border-bottom: 1px solid var(--line-soft);
    backdrop-filter: blur(14px);
}

.site-header__quick-nav {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: start;
}

.site-header__quick-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.85rem 1.15rem;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--header-text);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-header__quick-link:hover {
    transform: translateY(-1px);
    border-color: var(--accent);
}

.site-header__quick-link.is-active {
    border-color: var(--accent);
    background: linear-gradient(145deg, var(--accent-soft), var(--surface-strong));
}

.site-header__logo {
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.site-header__logo img {
    display: block;
    width: auto;
    max-width: min(72vw, 18rem);
    max-height: 5.75rem;
    object-fit: contain;
}

.site-header__actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.site-header__menu-button {
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: var(--surface-strong);
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.site-header__menu-button span {
    display: block;
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--header-text);
}

.locale-switcher {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.locale-switcher__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 3rem;
    height: 3rem;
    padding: 0.55rem;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--header-text);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.locale-switcher__link:hover {
    transform: translateY(-1px);
    border-color: var(--accent);
}

.locale-switcher__link.is-active {
    border-color: var(--accent);
    background: linear-gradient(145deg, var(--accent-soft), var(--surface-strong));
}

.locale-switcher__flag {
    display: inline-flex;
    width: 1.55rem;
    height: 1.05rem;
    overflow: hidden;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 0 1px rgba(31, 26, 23, 0.08);
}

.locale-switcher__flag img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.locale-switcher__code {
    display: none;
}

.site-drawer[hidden] {
    display: none;
}

.site-drawer {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.site-drawer__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(20, 14, 12, 0.5);
    cursor: pointer;
}

.site-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(90vw, 23rem);
    height: 100%;
    padding: 1.4rem;
    background: linear-gradient(180deg, var(--surface-strong) 0%, var(--bg-soft) 100%);
    box-shadow: -18px 0 48px rgba(24, 18, 13, 0.16);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(0);
}

.site-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-drawer__top strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
}

.site-drawer__close {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: var(--surface);
    cursor: pointer;
}

.site-drawer__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
}

.site-drawer__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-drawer__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-nav {
    display: grid;
    gap: 0.7rem;
}

.site-drawer__menu-buttons {
    display: grid;
    gap: 0.7rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line-soft);
}

.locale-switcher--drawer {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.6rem;
}

.locale-switcher--drawer .locale-switcher__link {
    min-width: 0;
}

.site-drawer__section-title {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-nav__link {
    display: flex;
    align-items: center;
    min-height: 3.4rem;
    padding: 0.95rem 1rem;
    border-radius: 1.15rem;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-nav__link.is-active {
    border-color: var(--accent);
    background: linear-gradient(145deg, var(--accent-soft), var(--surface-strong));
}

.site-nav__link:hover {
    transform: translateX(-2px);
}

body.nav-open {
    overflow: hidden;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #16120f;
}

.section-kicker,
.menu-section__eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.hero__media {
    width: 100%;
}

.hero__media img {
    display: block;
    width: 100%;
    min-height: clamp(17rem, 40vw, 34rem);
    max-height: 42rem;
    object-fit: cover;
    object-position: center;
}

.section-kicker,
.menu-section__eyebrow {
    color: var(--muted);
}

.main-content,
.footer-notes {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(1.2rem, 3vw, 2.4rem);
}

.main-content--page {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.menu-toolbar {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 1.4rem;
    align-items: end;
    margin-top: -2rem;
    padding: 2rem;
    border-radius: 2rem;
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.menu-toolbar--compact {
    grid-template-columns: 1fr;
    justify-items: center;
}

.menu-toolbar--compact .search-box {
    width: min(100%, 32rem);
}

.home-menu-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 1.25rem 0 0;
}

.home-menu-links--mobile-only {
    display: none;
}

.home-menu-links__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.95rem;
    padding: 0.85rem 1.15rem;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.home-menu-links__link:hover {
    transform: translateY(-1px);
    border-color: var(--accent);
}

.home-menu-links__link.is-active {
    border-color: var(--accent);
    background: linear-gradient(145deg, var(--accent-soft), var(--surface-strong));
}

.menu-toolbar__intro h2,
.footer-notes h2,
.department-panel__header h2 {
    margin: 0.35rem 0 0.75rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.menu-toolbar__intro p,
.department-panel__header p,
.footer-notes__card p,
.empty-state p,
.menu-section__header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.search-box {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.search-box span {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.search-box input {
    min-height: 3.5rem;
    padding: 0 1rem;
    border: 1px solid var(--line-soft);
    border-radius: 1rem;
    font: inherit;
    background: var(--surface);
}

.department-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 2rem 0 1.6rem;
}

.department-switch__button {
    min-width: min(18rem, 100%);
    padding: 1rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: 1.3rem;
    background: rgba(255, 253, 250, 0.8);
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.department-switch__button span,
.department-switch__button small {
    display: block;
}

.department-switch__button span {
    font-size: 1rem;
    font-weight: 800;
}

.department-switch__button small {
    margin-top: 0.35rem;
    color: var(--muted);
}

.department-switch__button.is-active {
    border-color: var(--accent);
    background: linear-gradient(145deg, var(--accent-soft), var(--surface-strong));
    transform: translateY(-2px);
}

.department-panel {
    display: none;
    padding: 2rem 0 0.4rem;
}

.department-panel.is-active {
    display: block;
}

.department-panel__header {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.4rem;
    align-items: end;
}

.category-tabs {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 1rem 0 0.35rem;
    scrollbar-width: thin;
}

.category-tabs__button {
    flex: 0 0 auto;
    padding: 0.88rem 1.2rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #111212, #35312f);
    color: #fff8ef;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.category-tabs__button.is-active {
    background: linear-gradient(135deg, #f5ecdb, #ffffff);
    color: #231813;
    box-shadow: 0 12px 24px rgba(36, 26, 18, 0.16);
}

.menu-sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.2rem;
}

.menu-section {
    padding: 1.8rem;
    border: 1px solid var(--line);
    border-radius: 1.8rem;
    background: var(--surface);
    box-shadow: 0 15px 50px rgba(24, 18, 13, 0.06);
    scroll-margin-top: 7rem;
}

.menu-section.is-hidden-by-search {
    display: none;
}

.menu-section__header {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.3rem;
}

.menu-section__header h3 {
    margin: 0.25rem 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 600;
}

.menu-items {
    display: grid;
    gap: 0.65rem;
}

.menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.2rem;
    align-items: start;
    padding: 1rem 0;
    border-top: 1px solid var(--line-soft);
}

.menu-item:first-child {
    border-top: 0;
}

.menu-item.is-hidden-by-search {
    display: none;
}

.menu-item__headline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
    margin-bottom: 0.35rem;
}

.menu-item__headline h4 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

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

.menu-item__translation {
    margin-top: 0.35rem !important;
    font-size: 0.94rem;
    font-style: italic;
    color: rgba(102, 93, 85, 0.9);
}

.menu-item__badge,
.menu-item__status {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.menu-item__badge {
    background: var(--olive-glow);
    color: var(--olive);
}

.menu-item__status {
    background: var(--accent-soft);
    color: var(--accent);
}

.menu-item__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 5rem;
}

.menu-item__aside strong {
    font-size: 1.15rem;
    color: var(--accent-deep);
}

.empty-state,
.footer-notes__card {
    padding: 1.5rem;
    border-radius: 1.6rem;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.empty-state strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.page-intro {
    margin: 0 auto 1.4rem;
    padding: 2rem;
    border-radius: 1.8rem;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 15px 50px rgba(24, 18, 13, 0.06);
}

.page-intro h1,
.content-card h2,
.feature-card h3 {
    margin: 0.35rem 0 0.7rem;
    font-family: "Cormorant Garamond", serif;
    line-height: 1;
}

.page-intro h1 {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.page-intro p,
.content-card p,
.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.page-grid,
.feature-grid,
.contact-grid {
    display: grid;
    gap: 1.4rem;
    margin-bottom: 1.4rem;
}

.page-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

.feature-grid,
.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.content-card,
.feature-card {
    padding: 1.5rem;
    border-radius: 1.6rem;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 15px 50px rgba(24, 18, 13, 0.06);
}

.content-card--media {
    padding: 0;
    overflow: hidden;
}

.content-card--media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 22rem;
    object-fit: cover;
}

.content-card--story p + p,
.content-card--note p + p {
    margin-top: 1rem;
}

.content-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.feature-card h3 {
    font-size: 2rem;
}

.contact-card h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.contact-hours-list {
    display: grid;
    gap: 0.35rem;
    margin: 0.45rem 0 0.8rem;
    font-family: "Cormorant Garamond", serif;
}

.contact-hours-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.45rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.15;
}

.contact-hours-row strong {
    font-weight: 700;
}

.contact-hours-row span {
    font-weight: 400;
}

.footer-notes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
    background: var(--footer-glass);
    color: var(--footer-text);
    border-top: 1px solid var(--line-soft);
    border-radius: 2rem 2rem 0 0;
    margin-top: 2rem;
}

.footer-notes__card ul {
    padding-left: 1.15rem;
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.footer-notes__card--single {
    max-width: 1180px;
}

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

.footer-contact__item {
    padding: 1.5rem;
    border-radius: 1.6rem;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.footer-contact__item strong,
.footer-contact__item a {
    display: block;
    margin-top: 0.45rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.15;
    color: var(--footer-text);
}

.site-footer-admin {
    display: flex;
    justify-content: center;
    padding-top: 0.35rem;
}

.site-footer-admin a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--footer-text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer-admin a:hover {
    transform: translateY(-1px);
    border-color: var(--accent);
    color: var(--accent-deep);
}

.floating-whatsapp {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1290;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 40px rgba(24, 18, 13, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 24px 44px rgba(24, 18, 13, 0.22);
}

.floating-whatsapp img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scroll-top-button[hidden] {
    display: none;
}

.scroll-top-button {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1300;
    width: 3.35rem;
    height: 3.35rem;
    padding: 0;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: linear-gradient(145deg, var(--surface-strong), var(--surface));
    color: var(--ink);
    box-shadow: 0 18px 40px rgba(24, 18, 13, 0.18);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.scroll-top-button:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.scroll-top-button span {
    display: block;
    font-size: 0;
    font-weight: 800;
    line-height: 1;
}

.scroll-top-button span::before {
    content: "\2191";
    font-size: 1.4rem;
}

.floating-whatsapp + .scroll-top-button {
    bottom: 6.25rem;
}

@media (max-width: 980px) {
    .site-header__quick-nav {
        display: none;
    }

    .locale-switcher--header {
        display: none;
    }

    .home-menu-links--mobile-only {
        display: flex;
    }

    .menu-toolbar,
    .department-panel__header,
    .page-grid,
    .feature-grid,
    .contact-grid,
    .menu-section__header,
    .footer-notes,
    .footer-contact {
        grid-template-columns: 1fr;
    }

    .menu-toolbar {
        padding: 1.35rem;
    }
}

@media (max-width: 720px) {
    .site-header {
        padding: 1rem;
    }

    .site-header__logo img {
        max-width: min(62vw, 13rem);
        max-height: 4.4rem;
    }

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

    .menu-item__aside {
        align-items: flex-start;
    }

    .department-switch {
        flex-direction: column;
        align-items: stretch;
    }

    .scroll-top-button {
        right: 1rem;
        bottom: 1rem;
        width: 3.1rem;
        height: 3.1rem;
    }

    .floating-whatsapp {
        right: 1rem;
        bottom: 1rem;
        width: 4rem;
        height: 4rem;
    }

    .floating-whatsapp + .scroll-top-button {
        bottom: 5.35rem;
    }
}
