:root {
    --bg-cream: #f7f4ec;
    --bg-soft: #f0ead9;
    --ink: #1e1d19;
    --muted: #5f5b4f;
    --gold: #c9a24d;
    --berry: #8a1d4f;
    --lime: #8ec63f;
    --card: #fffdf6;
    --radius: 18px;
    --shadow: 0 12px 30px rgba(36, 34, 28, 0.12);
    --font-body: "Manrope", sans-serif;
    --font-heading: "Syne", sans-serif;
    --font-size-base: 16px;
    --h1-size-max: 56px;
    --content-max: 1120px;
    --section-space: 64px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--ink);
    background:
        radial-gradient(circle at 20% 20%, rgba(201, 162, 77, 0.15), transparent 35%),
        radial-gradient(circle at 80% 10%, rgba(138, 29, 79, 0.12), transparent 40%),
        linear-gradient(180deg, #faf7ef 0%, #f5efde 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
.brand-text {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    margin-top: 0;
}

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

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--berry);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    padding: 0.5rem 0.8rem;
    background: #fff;
    border: 1px solid rgba(30, 29, 25, 0.2);
    border-radius: 10px;
    z-index: 200;
}

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

.container {
    width: min(var(--content-max), 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(250, 247, 239, 0.86);
    border-bottom: 1px solid rgba(30, 29, 25, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(30, 29, 25, 0.24);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
}

.menu-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--berry);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.2rem;
}

.nav-menu a {
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--berry);
}

.language-switcher ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.55rem;
}

.language-switcher a {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--muted);
}

.language-switcher .current-lang a {
    color: var(--berry);
}

.hero {
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--berry);
    margin-bottom: 0.9rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, var(--h1-size-max));
    line-height: 1.08;
    margin-bottom: 1rem;
}

.hero-actions {
    margin-top: 1.8rem;
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    min-height: 44px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 29, 25, 0.12);
}

.btn-primary {
    background: linear-gradient(135deg, var(--berry), #af2765);
    color: #fff;
}

.btn-ghost {
    border-color: rgba(30, 29, 25, 0.24);
    color: var(--ink);
}

.hero-visual {
    min-height: 380px;
    border-radius: calc(var(--radius) * 1.8);
    background: linear-gradient(135deg, rgba(46, 21, 32, 0.95), rgba(104, 37, 64, 0.92));
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-photowall {
    position: absolute;
    inset: 0;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.8rem;
}

.hero-shot {
    margin: 0;
    border-radius: calc(var(--radius) * 1.1);
    overflow: hidden;
    min-height: 100px;
    box-shadow: 0 16px 28px rgba(10, 8, 8, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

.shot-a {
    grid-row: 1 / span 2;
}

.shot-b,
.shot-c {
    min-height: 140px;
}

.hero-badge {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.94);
    color: #2c1a1f;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.section {
    padding: clamp(2.5rem, 6vw, var(--section-space)) 0;
}

.section.alt {
    background: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(30, 29, 25, 0.08);
    border-bottom: 1px solid rgba(30, 29, 25, 0.08);
}

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

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.4rem;
    align-items: center;
}

.story-copy p {
    color: var(--muted);
}

.story-quote {
    margin: 1.4rem 0 0;
    padding: 0.8rem 1rem;
    border-left: 4px solid var(--berry);
    font-family: var(--font-heading);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.56);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.story-visual {
    margin: 0;
    min-height: 320px;
    border-radius: calc(var(--radius) * 1.2);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 29, 25, 0.12);
}

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

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

.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 29, 25, 0.08);
}

.menu-intro {
    max-width: 64ch;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.menu-layout {
    display: grid;
    gap: 1rem;
}

.menu-category {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(30, 29, 25, 0.08);
    border-radius: calc(var(--radius) * 1.1);
    padding: 1rem;
}

.menu-category h3 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

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

.menu-item {
    background: #fffef9;
}

.menu-item h4 {
    margin: 0;
    font-size: 1.06rem;
}

.menu-item p {
    margin: 0.5rem 0 0;
    color: var(--muted);
}

.menu-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.7rem;
}

.menu-price {
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--berry);
}

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

.map-placeholder {
    border-radius: var(--radius);
    min-height: 280px;
    background: repeating-linear-gradient(
        45deg,
        rgba(138, 29, 79, 0.08),
        rgba(138, 29, 79, 0.08) 16px,
        rgba(142, 198, 63, 0.08) 16px,
        rgba(142, 198, 63, 0.08) 32px
    );
    border: 1px solid rgba(30, 29, 25, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    letter-spacing: 0.2em;
    color: var(--berry);
}

.site-footer {
    padding: 3rem 0 2rem;
    color: #f4efe4;
    background: linear-gradient(135deg, #2e1a23 0%, #111111 100%);
}

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

.footer-bottom {
    margin-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 1rem;
}

.content {
    padding: clamp(2rem, 5vw, 3rem) 0;
}

.post-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.4rem;
    margin-bottom: 1rem;
}

.section-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.layout-centered .hero-copy {
    text-align: center;
}

.layout-centered .hero-actions {
    justify-content: center;
}

.layout-centered .section .eyebrow,
.layout-centered .section h2 {
    text-align: center;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .section-grid,
    .story-layout,
    .location-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero-visual {
        min-height: 300px;
    }

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

    .site-footer {
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .site-header {
        position: static;
    }

    .nav-wrap {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 0.8rem 0;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .menu-panel {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        padding-top: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-panel.is-open {
        display: flex;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        gap: 0.6rem;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 0.6rem 0;
    }

    .language-switcher ul {
        width: 100%;
    }

    .hero {
        padding-top: 2rem;
    }

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

@media (min-width: 1440px) {
    .hero h1 {
        line-height: 1.02;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
