/* ============================================================
   DAS CLEO — Weißes Atelier
   Modernist Cuisine · Holzkirchen
   ============================================================ */

:root {
    --white:        #FAFAF8;
    --off-white:    #F2EFE9;
    --black:        #0A0A0A;
    --ink:          #1A1A1A;
    --gray-deep:    #3A3A3A;
    --gray-mid:     #787068;
    --gray-light:   #C8C4BC;
    --border:       #E0DCD4;
    --surface:      #F5F2EC;
    --gold:         #9C8B72;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ── HEADER ─────────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-shrink: 0;
}

.logo-word {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--black);
}

.nav-menu {
    display: flex;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-menu a {
    color: var(--gray-mid);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--black); }

.header-cta {
    padding: 0.55rem 1.4rem;
    border: 1px solid var(--black);
    color: var(--black);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-cta:hover { background: var(--black); color: var(--white); }

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 36px;
    height: 36px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    height: 1px;
    width: 24px;
    background: var(--black);
    transition: transform 0.3s, opacity 0.3s;
}

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

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
    height: 100vh;
    min-height: 640px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #1A1A18;
}

.hero-bg picture,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px 12vh;
    max-width: 700px;
}

.hero-pre {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(5rem, 10vw, 9rem);
    line-height: 0.92;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.hero-word { display: block; }
.hero-word.italic { font-style: italic; }

.hero-claim {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
}

.hero-stars {
    position: absolute;
    bottom: 12vh;
    right: 80px;
    z-index: 2;
    display: flex;
    gap: 0.4rem;
    align-items: center;
    opacity: 0.75;
}

.hero-stars img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.7); }
}

/* ── AWARDS STRIP ─────────────────────────────────────────────────── */
.awards-strip {
    background: var(--black);
    padding: 2rem 0;
}

.awards-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 3.5rem;
    text-align: center;
}

.award-stars-imgs {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    margin-bottom: 0.25rem;
}

.award-stars-imgs img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.award-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.award-of {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.award-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

.award-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* ── SECTION EYEBROW ─────────────────────────────────────────────── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--gray-light);
}

.section-eyebrow.light { color: rgba(255,255,255,0.65); }
.section-eyebrow.light::after { background: rgba(255,255,255,0.35); }

/* ── PHILOSOPHY ──────────────────────────────────────────────────── */
.philosophy-section {
    padding: 8rem 0;
    background: var(--white);
    overflow: hidden;
}

.philosophy-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-label {
    padding-top: 0.5rem;
}

.philosophy-label span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-mid);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    display: block;
    white-space: nowrap;
}

.philosophy-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.philosophy-text h2 em { font-style: italic; color: var(--gray-deep); }

.philosophy-body p {
    font-size: 0.9rem;
    color: var(--gray-deep);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.philosophy-quote {
    margin-top: 2.5rem;
    padding: 1.75rem 0 1.75rem 1.5rem;
    border-left: 1px solid var(--border);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gray-deep);
    line-height: 1.5;
}

.philosophy-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

.philosophy-image { position: relative; }

.philosophy-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}

.philosophy-caption {
    margin-top: 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

/* ── MENU SECTION ────────────────────────────────────────────────── */
.menu-section {
    background: var(--black);
    padding: 8rem 0;
}

.menu-header {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.menu-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.menu-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.75rem;
}

.menu-prices {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.75);
}

.price-sep { color: rgba(255,255,255,0.35); }

.courses {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.course {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 2rem;
    align-items: baseline;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
}

.course:hover { background: rgba(255,255,255,0.025); margin: 0 -24px; padding-left: 24px; padding-right: 24px; }

.course-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    text-align: right;
    padding-right: 1rem;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.course-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
}

.course-body p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.course--surprise .course-body p { font-style: italic; }
.course-hidden { color: rgba(255,255,255,0.4) !important; }

.course-ingredient {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-align: right;
    white-space: nowrap;
}

.menu-note {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 48px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.menu-note p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    text-align: center;
}

/* ── CHEF ────────────────────────────────────────────────────────── */
.chef-section {
    padding: 8rem 0;
    background: var(--white);
}

.chef-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
    align-items: start;
}

.chef-image { position: relative; }

.chef-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
}

.chef-image-caption {
    margin-top: 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

.chef-content { padding-top: 2rem; }

.chef-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--black);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}

.chef-bio p {
    font-size: 0.88rem;
    color: var(--gray-deep);
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.chef-facts {
    list-style: none;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.chef-facts li {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--gray-deep);
}

.chef-facts li span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--gray-mid);
    min-width: 40px;
}

/* ── CELLAR / WEINBEGLEITUNG ─────────────────────────────────────── */
.cellar-section {
    background: var(--surface);
    padding: 7rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cellar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.cellar-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--black);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.cellar-text p {
    font-size: 0.88rem;
    color: var(--gray-deep);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cellar-details { display: flex; flex-direction: column; gap: 0; }

.cellar-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.cellar-item:first-child { border-top: 1px solid var(--border); }

.ci-label {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

.ci-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--black);
}

/* ── RESERVIERUNG ────────────────────────────────────────────────── */
.reservation-section {
    background: var(--black);
    padding: 8rem 0;
}

.reservation-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
    align-items: start;
}

.reservation-info .section-eyebrow { margin-bottom: 1.25rem; }

.reservation-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.reservation-info h2 em { font-style: italic; }

.reservation-info > p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.res-details { display: flex; flex-direction: column; gap: 1.5rem; }

.res-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.res-detail-item i {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    margin-top: 0.2rem;
    width: 16px;
    flex-shrink: 0;
}

.res-detail-item strong {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.25rem;
}

.res-detail-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* Form */
.reservation-form {
    background: var(--white);
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--black); }

.form-group textarea { resize: vertical; }

.btn-reserve {
    width: 100%;
    padding: 1rem;
    background: var(--black);
    color: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 1rem;
}

.btn-reserve:hover { background: var(--gray-deep); }

.form-fine {
    font-size: 0.68rem;
    color: var(--gray-mid);
    line-height: 1.6;
    text-align: center;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
    background: var(--ink);
    padding: 4rem 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    line-height: 1.7;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white) !important;
    margin-bottom: 0.35rem;
    letter-spacing: 0.06em;
}

.footer-logo-text strong { font-weight: 400; font-style: italic; }

.footer-stars {
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.25) !important;
    font-size: 0.75rem;
    margin-top: 0.75rem;
}

.footer-col h4 {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col a,
.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-col a:hover,
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer-col p {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    line-height: 1.8;
    margin-bottom: 0.35rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-bottom a { color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ── DISCLAIMER ──────────────────────────────────────────────────── */
.escape-disclaimer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 0.65rem 1.5rem;
}

.escape-disclaimer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.25);
}

.escape-disclaimer__inner i { color: rgba(255,255,255,0.2); flex-shrink: 0; }
.escape-disclaimer__inner strong { color: rgba(255,255,255,0.45); font-weight: 500; }
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.35); }
.escape-disclaimer__inner a:hover { color: #f59034; }

/* ── ANIMATIONS ──────────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .philosophy-inner { grid-template-columns: 80px 1fr 1fr; gap: 2.5rem; }
    .chef-inner { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
    .reservation-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .award-item { padding: 0.5rem 2rem; }
}

@media (max-width: 768px) {
    .header-inner { padding: 0 24px; gap: 1rem; }

    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 24px 2rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        z-index: 200;
        gap: 0;
    }

    .nav-menu.open { transform: translateY(0); }
    .nav-menu a { padding: 0.85rem 0; font-size: 0.85rem; border-bottom: 1px solid var(--border); }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }

    .hero-content { padding: 0 32px 10vh; }
    .hero-stars { right: 32px; }

    .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
    .philosophy-label { display: none; }

    .chef-inner { grid-template-columns: 1fr; gap: 3rem; }

    .cellar-inner { grid-template-columns: 1fr; gap: 3rem; }

    .reservation-inner { grid-template-columns: 1fr; gap: 3rem; }

    .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 24px 2.5rem; }
    .footer-bottom { padding: 1.25rem 24px; }

    .courses { padding: 0 24px; }
    .course { grid-template-columns: 44px 1fr; gap: 1.25rem; }
    .course-ingredient { display: none; }

    .container, .awards-inner, .menu-header, .menu-note,
    .philosophy-inner, .chef-inner, .cellar-inner, .reservation-inner { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 560px) {
    .footer-inner { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .award-divider { display: none; }
    .award-item { padding: 0.5rem 1rem; }
    .awards-inner { gap: 0.5rem; }
}
