:root {
    --color-text: #462f29;
    --color-primary: #872f19;
    --color-primary-dark: #682412;
    --color-white: #ffffff;
    --color-soft: #f6f0ec;
    --color-line: rgba(70, 47, 41, 0.18);
    --color-danger: #9f1d1d;
    --color-danger-soft: #fff0f0;
    --color-warning: #76520b;
    --color-warning-soft: #fff7df;
    --font-body: "HelveticaNeueLTStd-Cn", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    --font-heading: "nexa", "Avenir Next", "Trebuchet MS", Arial, sans-serif;
    --font-title: "HelveticaNeueLTStd-BdCn", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    --shell: 1272px;
    --radius: 0;
}

@font-face {
    font-family: "HelveticaNeueLTStd-Cn";
    src:
        url("../fonts/helvetica-neue-ltstd/webfonts/2F5223_2_0.woff2") format("woff2"),
        url("../fonts/helvetica-neue-ltstd/webfonts/2F5223_2_0.woff") format("woff"),
        local("HelveticaNeueLTStd-Cn"),
        local("Helvetica Neue LT Std 57 Condensed");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "HelveticaNeueLTStd-LtCn";
    src:
        url("../fonts/helvetica-neue-ltstd/webfonts/2F5223_0_0.woff2") format("woff2"),
        url("../fonts/helvetica-neue-ltstd/webfonts/2F5223_0_0.woff") format("woff"),
        local("HelveticaNeueLTStd-LtCn"),
        local("Helvetica Neue LT Std 47 Light Condensed");
    font-display: swap;
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "HelveticaNeueLTStd-BdCn";
    src:
        url("../fonts/helvetica-neue-ltstd/webfonts/2F5223_1_0.woff2") format("woff2"),
        url("../fonts/helvetica-neue-ltstd/webfonts/2F5223_1_0.woff") format("woff"),
        local("HelveticaNeueLTStd-BdCn"),
        local("Helvetica Neue LT Std 77 Bold Condensed");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "nexa";
    src:
        local("nexa"),
        local("Nexa Bold");
    font-display: swap;
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "nexa";
    src:
        local("nexa"),
        local("Nexa Light");
    font-display: swap;
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "nexa";
    src:
        local("nexa"),
        local("Nexa Light Italic");
    font-display: swap;
    font-style: italic;
    font-weight: 300;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.5;
    font-synthesis: none;
}

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

a {
    color: inherit;
}

.shell {
    width: min(100% - 48px, var(--shell));
    margin-inline: auto;
}

.section {
    padding-block: 118px;
}

.section-block {
    padding-block: 96px;
}

.site-header {
    position: relative;
    z-index: 10;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-line);
}

.hero-header {
    position: absolute;
    inset: 0 0 auto;
    background: transparent;
    border-bottom: 0;
}

.header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding-top: 29px;
}

.logo-card {
    display: block;
    width: 162px;
    height: 162px;
    text-decoration: none;
}

.logo-card img {
    display: block;
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-top: 35px;
}

.menu-toggle {
    display: none;
}

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

.brand {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
}

.header-actions {
    display: flex;
    gap: 16px;
}

.main-nav a {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
}

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

.main-nav .nav-reserve,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 16px 24px;
    border: 0;
    border-radius: var(--radius);
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.button-secondary {
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--color-primary);
    color: var(--color-white);
}

.button-large {
    min-height: 56px;
    padding: 18px 28px;
}

.main-nav .nav-reserve:hover,
.main-nav .nav-reserve:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.button-disabled {
    background: rgba(135, 47, 25, 0.34);
    cursor: not-allowed;
}

.hero-section {
    position: relative;
    min-height: 982px;
    background: var(--color-white);
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100%, 1800px);
    transform: translateX(-50%);
    background: url("../img/schwesterCarla_header.jpg") center bottom / cover no-repeat;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 22%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 34%, rgba(255, 255, 255, 0) 62%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 451px;
}

.opening-badge {
    display: inline-flex;
    margin: 0 0 76px;
    padding: 16px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1;
}

.hero-content h1 {
    max-width: 424px;
    margin: 0 0 40px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
}

.hero-content p:not(.opening-badge) {
    max-width: 417px;
    margin: 0;
    font-family: var(--font-body);
}

.narrow-copy {
    width: min(100% - 48px, 840px);
    margin-inline: auto;
}

.intro-lead {
    margin: 0 0 24px;
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.lead {
    max-width: 760px;
    color: rgba(70, 47, 41, 0.72);
    font-size: 24px;
}

.intro-section p:not(.intro-lead) {
    margin-top: 0;
    font-family: var(--font-body);
}

blockquote {
    position: relative;
    margin: 82px 0 0;
    padding-left: 24px;
}

blockquote span {
    position: absolute;
    z-index: 0;
    left: -48px;
    top: -48px;
    color: rgba(135, 47, 25, 0.22);
    font-family: Georgia, serif;
    font-size: 156px;
    line-height: 1;
    pointer-events: none;
}

blockquote p {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 40px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.2;
}

blockquote cite {
    position: relative;
    z-index: 1;
    display: block;
    font-style: normal;
}

.deal-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
    min-height: 1037px;
}

.deal-image,
.hours-image {
    position: relative;
    min-height: 640px;
    overflow: hidden;
}

.deal-image img,
.hours-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    left: 10%;
    top: 13%;
    display: grid;
    place-items: center;
    width: 320px;
    height: 320px;
    padding: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-15deg);
}

.discount-badge span,
.discount-badge em {
    font-style: normal;
    line-height: 1.5;
}

.discount-badge strong {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
}

.discount-badge em {
    font-weight: 700;
}

.deal-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 112px min(8vw, 120px);
    background: var(--color-primary);
    color: var(--color-white);
}

.deal-copy h2,
.food-copy h2,
.hours-copy h2,
.contact-section h2 {
    margin: 0 0 24px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

.deal-copy h2 strong {
    display: block;
}

.deal-copy h3 {
    margin: 0 0 8px;
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.deal-copy hr {
    width: 100%;
    height: 1px;
    margin: 32px 0;
    border: 0;
    background: rgba(255, 255, 255, 0.22);
}

.deal-times {
    display: grid;
    gap: 8px;
    margin: 0;
}

.deal-times dt,
.deal-times dd {
    margin: 0;
}

.deal-times dd,
.deal-copy strong,
.mail-link {
    font-weight: 700;
}

.mail-link {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--color-white);
    font-size: 28px;
    text-decoration: none;
}

.deal-copy small {
    display: block;
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.5;
}

.food-grid {
    display: grid;
    grid-template-columns: 516px minmax(420px, 1fr);
    gap: 80px;
    align-items: center;
}

.food-copy p {
    margin: 0 0 12px;
}

.food-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 32px 0 24px;
}

.menu-button-stack {
    display: grid;
    gap: 16px;
}

.menu-note {
    position: relative;
    max-width: 340px;
    padding-left: 31px;
    color: var(--color-primary);
    font-size: 16px;
    line-height: 1.5;
}

.menu-note::before {
    content: "i";
    position: absolute;
    left: 0;
    top: 2px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    line-height: 1;
}

.food-images {
    position: relative;
    min-height: 520px;
    overflow: visible;
}

.food-images img {
    position: absolute;
    object-fit: cover;
}

.food-image-small {
    left: 300px;
    right: auto;
    top: 0;
    width: 300px;
    height: 300px;
    z-index: 2;
}

.food-image-large {
    left: 0;
    bottom: 36px;
    width: 376px;
    height: 376px;
    z-index: 1;
}

.section-kicker {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.updated-note {
    color: rgba(70, 47, 41, 0.72);
    font-size: 16px;
}

.gallery-section {
    position: relative;
    padding-bottom: 96px;
}

.gallery-image {
    width: 100%;
    height: 766px;
    object-fit: cover;
    transition: opacity 180ms ease;
}

.gallery-image.is-changing {
    opacity: 0.2;
}

.slider-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    color: var(--color-primary);
}

.slider-control button {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 0;
    background: var(--color-primary);
    color: var(--color-white);
    cursor: pointer;
}

.slider-control button:hover,
.slider-control button:focus-visible {
    background: var(--color-primary-dark);
    outline: none;
}

.slider-arrow {
    display: block;
    width: 13px;
    height: 13px;
    border-top: 4px solid currentColor;
    border-right: 4px solid currentColor;
}

.slider-arrow-prev {
    margin-left: 4px;
    transform: rotate(-135deg);
}

.slider-arrow-next {
    margin-right: 4px;
    transform: rotate(45deg);
}

.hours-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
    min-height: 1018px;
    background: var(--color-primary);
    color: var(--color-white);
}

.hours-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 112px min(8vw, 120px);
}

.hours-list {
    display: grid;
    gap: 32px;
}

.hours-list h3 {
    margin: 0 0 8px;
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.hours-list p {
    margin: 0;
}

.contact-grid {
    display: grid;
    max-width: 760px;
}

.contact-section p {
    margin-top: 0;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 84px;
    max-width: 407px;
}

.contact-columns h3 {
    margin: 0 0 8px;
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.site-footer {
    padding-block: 72px;
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-inner {
    display: grid;
    grid-template-columns: 192px 1fr 1.2fr 1.3fr;
    gap: 80px;
    align-items: end;
}

.logo-card-footer {
    width: 200px;
    height: 200px;
}

.site-footer h2 {
    margin: 0 0 8px;
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: var(--color-white);
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
}

.social-links img {
    width: 40px;
    height: 40px;
    display: block;
}

.copyright {
    opacity: 0.67;
}

.review-link {
    display: inline-block;
    margin-bottom: 24px;
}

.legal-links {
    display: flex;
    gap: 48px;
    margin-top: 24px !important;
}

.admin-link {
    display: inline-block;
    margin-top: 18px;
    opacity: 0.75;
}

.auth-page {
    min-height: 100vh;
    background: var(--color-soft);
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
}

.auth-card,
.admin-panel,
.status-panel {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    padding: 40px;
}

.auth-card {
    width: min(100%, 520px);
}

.auth-card h1,
.admin-panel h1 {
    margin: 0 0 24px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
}

.text-muted {
    color: rgba(70, 47, 41, 0.72);
}

.eyebrow {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-stack {
    display: grid;
    gap: 24px;
}

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

.form-label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-control {
    width: 100%;
    min-height: 56px;
    padding: 12px 16px;
    border: 2px solid rgba(70, 47, 41, 0.32);
    border-radius: 0;
    color: var(--color-text);
    font: inherit;
}

.form-control:focus {
    border-color: var(--color-primary);
    outline: 3px solid rgba(135, 47, 25, 0.2);
}

.button-full {
    width: 100%;
}

.alert {
    margin-block: 20px;
    padding: 16px;
    border: 1px solid currentColor;
    font-weight: 700;
}

.alert-danger {
    color: var(--color-danger);
    background: var(--color-danger-soft);
}

.alert-warning {
    color: var(--color-warning);
    background: var(--color-warning-soft);
}

.alert-success {
    color: var(--color-primary);
    background: var(--color-soft);
}

.back-link {
    display: inline-block;
    margin-top: 24px;
    font-weight: 700;
}

.admin-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}

.admin-stack {
    display: grid;
    gap: 32px;
}

.status-stack hr {
    margin: 32px 0;
    border: 0;
    border-top: 1px solid var(--color-line);
}

.status-panel h2 {
    margin-top: 0;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.admin-list-panel {
    margin-top: 48px;
    padding: 40px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
}

.admin-list-panel h2 {
    margin: 0 0 24px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px 12px;
    border-bottom: 1px solid var(--color-line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--color-primary);
    font-family: var(--font-title);
}

.admin-table a {
    color: var(--color-primary);
    font-weight: 700;
}

.legal-page {
    background: var(--color-white);
}

.legal-content {
    max-width: 920px;
}

.legal-content h1 {
    margin: 0 0 48px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 8vw, 5.6rem);
    font-weight: 600;
    line-height: 1;
}

.legal-content section {
    padding-block: 32px;
    border-top: 1px solid var(--color-line);
}

.legal-content h2 {
    margin: 0 0 16px;
    color: var(--color-primary);
    font-family: var(--font-title);
    font-size: 28px;
    line-height: 1.3;
}

.legal-content p {
    margin: 0 0 16px;
    max-width: 760px;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content a {
    color: var(--color-primary);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .hero-header {
        position: relative;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-line);
    }

    .header-inner,
    .main-nav {
        align-items: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 20px;
        padding-top: 0;
    }

    .hero-section {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 210px;
    }

    .deal-section,
    .hours-section,
    .food-grid,
    .contact-grid,
    .footer-inner,
    .form-grid,
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .deal-copy,
    .hours-copy {
        padding: 80px 48px;
    }

    .food-images {
        min-height: 460px;
    }

    .footer-inner {
        align-items: start;
        gap: 40px;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 18px;
    }

    .shell,
    .narrow-copy {
        width: min(100% - 32px, var(--shell));
    }

    .section {
        padding-block: 72px;
    }

    .header-inner {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: space-between;
        padding-block: 20px;
    }

    .logo-card {
        width: 128px;
        height: 128px;
    }

    .main-nav {
        display: none;
        align-items: stretch;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        padding-top: 0;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a,
    .main-nav .nav-reserve {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        width: 56px;
        height: 56px;
        padding: 0;
        border: 2px solid var(--color-primary);
        background: var(--color-white);
        cursor: pointer;
        gap: 5px;
    }

    .menu-toggle span:not(.screen-reader-text) {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--color-primary);
        transition: transform 160ms ease, opacity 160ms ease;
    }

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

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

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

    .hero-section {
        min-height: 620px;
    }

    .hero-content {
        padding-top: 96px;
    }

    .opening-badge {
        margin-bottom: 32px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .intro-lead,
    .contact-section h2,
    .deal-copy h2,
    .food-copy h2,
    .hours-copy h2 {
        font-size: 36px;
    }

    blockquote {
        padding-left: 18px;
    }

    blockquote span {
        left: -24px;
        top: -34px;
        font-size: 112px;
    }

    blockquote p {
        font-size: 32px;
    }

    .deal-section,
    .hours-section {
        min-height: 0;
    }

    .deal-image,
    .hours-image {
        min-height: 420px;
    }

    .discount-badge {
        left: 24px;
        top: 40px;
        width: 220px;
        height: 220px;
        padding: 28px;
    }

    .discount-badge strong {
        font-size: 56px;
    }

    .deal-copy,
    .hours-copy {
        padding: 64px 24px;
    }

    .mail-link {
        font-size: 22px;
        overflow-wrap: anywhere;
    }

    .food-grid {
        gap: 48px;
    }

    .food-actions {
        gap: 16px;
    }

    .button,
    .food-actions .button,
    .menu-button-stack {
        width: 100%;
    }

    .food-images {
        min-height: 360px;
    }

    .food-image-small {
        left: 40%;
        right: auto;
        width: 48%;
        height: 180px;
    }

    .food-image-large {
        width: 68%;
        height: 260px;
    }

    .gallery-image {
        height: 420px;
    }

    .contact-columns {
        margin-top: 48px;
    }

}
