:root {
    --olive: #686646;
    --olive-dark: #474632;
    --gold: #c99a2e;
    --ink: #181914;
    --muted: #66665e;
    --paper: #f3efe5;
    --paper-deep: #e7e0d1;
    --white: #fffdf8;
    --line: #c9c2b3;
    --container: min(1240px, calc(100% - 64px))
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65
}

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

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

.container {
    width: var(--container);
    margin-inline: auto
}

main {
    overflow: hidden
}

.announcement {
    background: var(--gold);
    color: var(--ink);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--ink)
}

.announcement-inner {
    min-height: 36px;
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    padding: 7px 0;
    text-align: center
}

.announcement a {
    border-bottom: 1px solid currentColor
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: var(--ink);
    color: var(--white);
    border-bottom: 1px solid #3f4038
}

.site-header .container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(20px, 4vw, 72px)
}

.nav-wrap {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: max-content
}

.brand-fox {
    width: 45px;
    height: 45px;
    object-fit: contain
}

.brand-type {
    display: flex;
    flex-direction: column;
    line-height: .84;
    letter-spacing: .08em;
    color: var(--white)
}

.brand-type strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.38rem;
    font-weight: 500
}

.brand-type small {
    font-size: .66rem;
    font-weight: 700;
    margin-top: 8px;
    color: #bbb7a8;
    letter-spacing: .2em
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase
}

.main-nav>a {
    padding: 12px 9px;
    border-bottom: 1px solid transparent;
    color: #d9d6cc
}

.main-nav>a:hover,
.main-nav>a.active {
    color: #fff;
    border-bottom-color: var(--gold)
}

.main-nav .nav-cta {
    margin-left: 10px;
    padding: 13px 18px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--ink)
}

.main-nav .nav-cta:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--gold)
}

.menu-toggle {
    display: none;
    border: 1px solid #77776e;
    background: transparent;
    color: #fff;
    padding: 10px 14px;
    font: inherit;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.hero {
    padding: 0;
    border-bottom: 1px solid var(--ink)
}

.hero>.container {
    width: 100%;
    max-width: none
}

.hero-shell {
    position: relative;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
    align-items: stretch;
    background: var(--paper);
    border: 0
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    padding: clamp(64px, 8vw, 132px) clamp(34px, 7vw, 128px)
}

.hero-copy:after {
    content: "BAD SCHWALBACH · ITALIENISCHE KÜCHE";
    position: absolute;
    left: clamp(34px, 7vw, 128px);
    bottom: 34px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--muted)
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .68rem;
    font-weight: 800;
    color: var(--olive-dark);
    margin-bottom: 22px
}

.eyebrow:before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--gold)
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.02;
    margin: 0 0 .6em;
    font-weight: 400
}

h1 {
    font-size: clamp(4rem, 7.3vw, 8.3rem);
    letter-spacing: -.065em
}

.hero h1 span {
    display: block;
    color: var(--olive);
    font-style: italic;
    margin-left: .5em
}

.hero-lead {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 1.45vw, 1.3rem);
    max-width: 620px;
    color: #44443d;
    margin: 24px 0 34px;
    line-height: 1.6
}

.button-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid var(--ink);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: background-color .18s, color .18s, border-color .18s
}

.btn-primary {
    background: var(--ink);
    color: #fff
}

.btn-primary:hover {
    background: var(--olive-dark);
    border-color: var(--olive-dark)
}

.btn-secondary {
    background: transparent
}

.btn-secondary:hover {
    background: var(--ink);
    color: #fff
}

.hero-art {
    position: relative;
    min-height: 100%;
    display: grid;
    place-items: center;
    background: var(--olive);
    border-left: 1px solid var(--ink);
    overflow: hidden
}

.hero-art:before,
.hero-art:after {
    content: "";
    position: absolute;
    inset: 32px;
    border: 1px solid rgba(255, 255, 255, .22)
}

.hero-art:after {
    inset: 50% auto auto 50%;
    width: 430px;
    height: 430px;
    transform: translate(-50%, -50%) rotate(45deg);
    border-color: rgba(255, 255, 255, .12)
}

.hero-art img {
    position: relative;
    z-index: 1;
    width: min(390px, 67%);
    filter: drop-shadow(14px 18px 0 rgba(24, 25, 20, .16))
}

.hero-note {
    position: absolute;
    z-index: 2;
    right: 32px;
    bottom: 32px;
    max-width: 240px;
    padding: 14px 16px;
    background: var(--paper);
    border: 1px solid var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: .9rem;
    line-height: 1.45
}

.section {
    padding: 104px 0;
    border-bottom: 1px solid var(--line)
}

.section-tight {
    padding: 64px 0 92px
}

.section-title {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: end;
    gap: 64px;
    margin-bottom: 44px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ink)
}

.section-title h2 {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    letter-spacing: -.045em;
    margin-bottom: 0
}

.section-title p {
    max-width: 500px;
    color: var(--muted);
    margin: 0 0 6px
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--ink);
    border: 1px solid var(--ink)
}

.grid-3,
.news-grid,
.team-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--ink);
    border: 1px solid var(--ink)
}

.card {
    background: var(--white);
    border: 0;
    padding: 32px
}

.card h3 {
    font-size: 1.9rem;
    margin-bottom: 14px
}

.card p:last-child {
    margin-bottom: 0
}

.promo-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--white)
}

.promo-card.has-image {
    background-size: cover;
    background-position: center;
    color: #fff
}

.promo-card.has-image:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .8))
}

.promo-card>* {
    position: relative;
    z-index: 1
}

.badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: auto;
    padding: 6px 9px;
    background: var(--gold);
    color: var(--ink);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase
}

.promo-date {
    margin-top: 14px;
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .72
}

.news-card {
    overflow: hidden;
    padding: 0
}

.news-thumb {
    aspect-ratio: 4/3;
    background: var(--paper-deep);
    display: grid;
    place-items: center;
    color: var(--olive);
    border-bottom: 1px solid var(--ink);
    overflow: hidden
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease
}

.news-card:hover .news-thumb img {
    transform: scale(1.025)
}

.news-body {
    padding: 28px
}

.news-meta {
    font-size: .67rem;
    color: var(--muted);
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px
}

.news-body h3 {
    font-size: 1.75rem
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start
}

.hours-panel {
    background: var(--olive-dark);
    color: #fff;
    padding: 50px;
    border: 1px solid var(--ink)
}

.hours-panel h2 {
    font-size: clamp(2.5rem, 4vw, 4rem)
}

.hours-list {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .35)
}

.hours-row {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    font-size: .9rem
}

.hours-row strong {
    font-weight: 800
}

.hours-row span {
    color: #e1dfd5
}

.contact-card {
    padding: 50px;
    background: var(--white);
    border: 1px solid var(--ink)
}

.contact-list {
    display: grid;
    gap: 0;
    margin: 24px 0
}

.contact-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--line)
}

.contact-item small {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 800;
    font-size: .65rem
}

.contact-item strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    font-weight: 400
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    background: var(--paper-deep);
    border: 1px solid var(--ink);
    padding: 34px;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    font-weight: 400
}

.map-link:hover {
    background: var(--gold)
}

.page-hero {
    padding: 92px 0 34px;
    background: var(--paper-deep);
    border-bottom: 1px solid var(--ink)
}

.page-hero-inner {
    padding-bottom: 46px;
    border-bottom: 0
}

.page-hero h1 {
    max-width: 1000px;
    font-size: clamp(3.8rem, 8vw, 8rem)
}

.page-intro {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    max-width: 820px;
    color: var(--muted);
    line-height: 1.6
}

.prose {
    max-width: 860px;
    font-size: 1.02rem
}

.prose h2 {
    font-size: 2.7rem;
    margin-top: 1.5em
}

.prose h3 {
    font-size: 1.8rem;
    margin-top: 1.5em
}

.prose a {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--olive-dark)
}

.team-card {
    padding: 0;
    overflow: hidden
}

.team-photo {
    aspect-ratio: 4/5;
    background: var(--paper-deep);
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--ink)
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.team-placeholder {
    width: 86px !important;
    height: auto !important;
    opacity: .28
}

.team-body {
    padding: 25px
}

.team-body h3 {
    font-size: 1.7rem
}

.team-role {
    font-size: .67rem;
    color: var(--olive-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em
}

.gallery-item {
    overflow: hidden;
    background: var(--paper-deep);
    aspect-ratio: 4/3;
    position: relative;
    margin: 0
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 10px 12px;
    border-top: 1px solid var(--ink);
    font-size: .78rem
}

.docs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--ink);
    border: 1px solid var(--ink)
}

.doc-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.doc-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 400
}

.doc-card span {
    color: var(--muted);
    font-size: .76rem
}

.menu-intro {
    margin-bottom: 38px
}

.menu-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--ink);
    border: 1px solid var(--ink)
}

.menu-tile {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(28px, 4vw, 52px);
    background: var(--white);
    transition: background-color .2s ease, color .2s ease
}

.menu-tile-lunch {
    background: var(--olive-dark);
    color: #fff
}

.menu-tile:hover {
    background: var(--gold);
    color: var(--ink)
}

.menu-tile-number,
.menu-tile-kicker,
.menu-tile-action {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase
}

.menu-tile-number {
    align-self: flex-end;
    opacity: .65
}

.menu-tile-kicker {
    display: block;
    margin-bottom: 16px;
    color: var(--gold)
}

.menu-tile:hover .menu-tile-kicker {
    color: var(--ink)
}

.menu-tile h2 {
    margin-bottom: 18px;
    font-size: clamp(3rem, 5vw, 5.6rem);
    letter-spacing: -.05em
}

.menu-tile p {
    max-width: 480px;
    margin: 0;
    opacity: .75
}

.menu-tile-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid currentColor
}

.menu-tile-action b {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 400
}

.notice {
    background: #f6e9bd;
    border: 1px solid var(--gold);
    padding: 16px 18px
}

.empty-state {
    border: 1px dashed #999487;
    padding: 38px;
    text-align: center;
    color: var(--muted)
}

.site-footer {
    margin-top: 0;
    background: var(--ink);
    color: #e8e5dc;
    padding: 76px 0 28px;
    border-top: 6px solid var(--gold)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr .8fr .8fr .7fr;
    gap: 38px
}

.site-footer h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .17em;
    color: var(--gold)
}

.site-footer p {
    color: #bdbab0;
    font-size: .88rem
}

.site-footer a {
    color: #e8e5dc
}

.site-footer a:hover {
    color: var(--gold)
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px
}

.footer-brand .brand-fox {
    width: 58px
}

.footer-brand div {
    display: flex;
    flex-direction: column;
    line-height: .85;
    color: #fff
}

.footer-brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 400
}

.footer-brand span {
    font-size: .65rem;
    font-weight: 800;
    margin-top: 8px;
    letter-spacing: .18em;
    color: #aaa79d
}

.footer-bottom {
    margin-top: 54px;
    padding-top: 20px;
    border-top: 1px solid #41413a;
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #85857d
}

@media(max-width:1100px) {
    .menu-toggle {
        display: block
    }

    .main-nav {
        position: absolute;
        top: 86px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px clamp(20px, 4vw, 72px) 22px;
        background: var(--ink);
        border-bottom: 1px solid #55554c
    }

    .main-nav.open {
        display: flex
    }

    .main-nav>a {
        padding: 13px 0
    }

    .main-nav .nav-cta {
        margin: 8px 0 0;
        padding-inline: 14px;
        text-align: center
    }

    .hero-shell {
        grid-template-columns: 1fr 42%;
        min-height: 610px
    }

    .hero-copy {
        padding-inline: 48px
    }

    .hero-copy:after {
        left: 48px
    }

    .grid-3,
    .news-grid,
    .team-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .split {
        gap: 34px
    }

    .footer-grid>div:first-child {
        grid-column: 1/-1
    }
}

@media(max-width:760px) {
    :root {
        --container: min(100% - 36px, 1240px)
    }

    .announcement-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        padding: 8px 0;
        text-align: left
    }

    .nav-wrap {
        height: 74px
    }

    .main-nav {
        top: 74px
    }

    .brand-fox {
        width: 39px;
        height: 39px
    }

    .brand-type strong {
        font-size: 1.15rem
    }

    .hero-shell {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .hero-copy {
        padding: 58px 20px 78px
    }

    .hero-copy:after {
        left: 20px;
        bottom: 24px
    }

    .hero-art {
        min-height: 400px;
        border-left: 0;
        border-top: 1px solid var(--ink)
    }

    .hero-art:before {
        inset: 20px
    }

    .hero-art:after {
        width: 280px;
        height: 280px
    }

    .hero-art img {
        width: 230px
    }

    .hero-note {
        right: 20px;
        bottom: 20px
    }

    h1 {
        font-size: clamp(3.6rem, 18vw, 5.7rem)
    }

    .hero h1 span {
        margin-left: .2em
    }

    .section {
        padding: 72px 0
    }

    .section-tight {
        padding: 48px 0 68px
    }

    .section-title {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 28px
    }

    .section-title h2 {
        font-size: 2.8rem
    }

    .grid-2,
    .grid-3,
    .news-grid,
    .team-grid,
    .gallery-grid,
    .docs,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .split {
        grid-template-columns: 1fr;
        gap: 26px
    }

    .promo-card {
        min-height: 320px
    }

    .hours-panel,
    .contact-card {
        padding: 30px 22px
    }

    .hours-row {
        grid-template-columns: 1fr;
        gap: 3px
    }

    .page-hero {
        padding: 62px 0 20px
    }

    .page-hero h1 {
        font-size: clamp(3.4rem, 17vw, 5.6rem)
    }

    .button-row .btn {
        width: 100%
    }

    .footer-grid>div:first-child {
        grid-column: auto
    }

    .site-footer {
        padding-top: 56px
    }

    .menu-tiles {
        grid-template-columns: 1fr
    }

    .menu-tile {
        min-height: 390px;
        padding: 28px 22px
    }
}
