* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --content-max: 940px;
}

body {
    font-family: Arial, sans-serif;
    background: #f7f3ee;
    color: #2b2b2b;
    line-height: 1.5;
}

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

header {
    background: #1f1a17;
    color: #fff;
    padding: 20px 0;
    margin-bottom: 40px;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 14px;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.18);
}

.hero {
    text-align: center;
    padding: 30px 0 10px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 14px;
}

.hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #666;
    font-size: 18px;
}

.landing-hero {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 68vh;
    display: flex;
    align-items: flex-end;
    margin-bottom: 28px;
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, rgba(20, 15, 13, 0.75), rgba(20, 15, 13, 0.25)),
        url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 42px;
    max-width: 720px;
}

.landing-kicker {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}

.landing-hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.landing-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 10px;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.cta-row .btn-link {
    text-align: center;
}

.btn-link {
    display: inline-block;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: bold;
}

.btn-primary {
    background: #c65a20;
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.landing-section {
    margin-top: 28px;
}

.landing-section h2 {
    margin-bottom: 8px;
    font-size: 32px;
}

.landing-section > p {
    color: #666;
    margin-bottom: 18px;
}

.home-quick-links {
    margin-top: 36px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.home-link-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.home-link-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.home-link-card p {
    color: #666;
    font-size: 15px;
}

.home-meta {
    margin-top: 34px;
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr 1fr;
}

.landing-hero,
.landing-section,
.home-quick-links,
.home-meta,
.hero,
.booking-wrapper,
.page-content,
.section-title,
.section-subtitle,
.menu-section,
.order-panel {
    width: min(var(--content-max), 100%);
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.booking-wrapper {
    margin: 40px auto 0;
}

.page-content {
    margin: 24px auto 0;
}

.info-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr 1fr;
}

.info-card h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.info-card p {
    color: #555;
}

.info-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

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

.info-label {
    font-weight: bold;
    min-width: 90px;
}

.newsletter-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: start;
}

.newsletter-row button {
    width: auto;
    white-space: nowrap;
    padding: 13px 18px;
}

.mt-22 {
    margin-top: 22px;
}

form {
    display: grid;
    gap: 16px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 6px;
}

input,
select,
textarea,
button {
    width: 100%;
    padding: 13px 14px;
    border-radius: 10px;
    border: 1px solid #d8d1c8;
    font-size: 15px;
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: 13px;
}

.is-invalid {
    border-color: #d92d20 !important;
    background: #fff6f5;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

button {
    border: none;
    background: #2e221c;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.section-title {
    font-size: 32px;
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 760px;
    margin: 0 auto 34px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.menu-section {
    margin-top: 42px;
}

.menu-section-title {
    font-size: 28px;
    margin-bottom: 6px;
}

.menu-section-subtitle {
    color: #666;
    margin-bottom: 16px;
}

.menu-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}

.menu-image {
    height: 180px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.menu-content {
    padding: 20px;
    display: grid;
    gap: 12px;
    flex: 1;
}

.menu-content h3 {
    font-size: 22px;
}

.menu-content p {
    color: #666;
    font-size: 14px;
}

.menu-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.price {
    font-weight: bold;
    font-size: 18px;
}

.qty {
    width: 90px;
}

.order-panel {
    margin-top: 34px;
}

.site-footer {
    margin-top: 52px;
    background: #1f1a17;
    color: rgba(255, 255, 255, 0.9);
    padding: 26px 0;
}

.footer-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.footer-list {
    display: grid;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.secret-shell {
    width: min(var(--content-max), 92%);
    margin: 48px auto;
}

.secret-title {
    font-size: 34px;
    margin-bottom: 8px;
}

.secret-subtitle {
    color: #666;
    margin-bottom: 22px;
}

.swatch-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.swatch-card {
    border: 1px solid #d8d1c8;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.swatch-color {
    height: 120px;
}

.swatch-meta {
    padding: 12px;
    display: grid;
    gap: 4px;
}

.swatch-name {
    font-weight: bold;
}

.swatch-code {
    font-size: 13px;
    color: #555;
}

.success-card {
    text-align: center;
}

.success-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.success-actions {
    justify-content: center;
}

@media (max-width: 900px) {
    header {
        margin-bottom: 28px;
    }

    .nav {
        align-items: flex-start;
    }

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

    .landing-hero {
        min-height: 62vh;
    }

    .landing-hero-content {
        padding: 30px;
    }

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

    .home-quick-links {
        grid-template-columns: 1fr 1fr;
    }

    .home-meta {
        grid-template-columns: 1fr;
    }

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

    .newsletter-row {
        grid-template-columns: 1fr;
    }

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

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

    .hero h1 {
        font-size: 34px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--content-max), 94%);
    }

    header {
        padding: 14px 0;
        margin-bottom: 22px;
    }

    .logo {
        font-size: 22px;
    }

    .nav {
        gap: 12px;
    }

    .nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        font-size: 13px;
        padding: 9px 8px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .landing-hero {
        min-height: 58vh;
    }

    .landing-hero-content {
        padding: 24px;
    }

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

    .landing-hero-content p,
    .hero p {
        font-size: 16px;
    }

    .landing-section h2,
    .section-title {
        font-size: 28px;
    }

    .home-quick-links {
        grid-template-columns: 1fr;
        margin-top: 22px;
        gap: 14px;
    }

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

    .card {
        padding: 18px;
    }

    .menu-image {
        height: 160px;
    }

    .menu-content h3 {
        font-size: 20px;
    }

    .info-row {
        display: block;
    }

    .info-label {
        display: block;
        min-width: auto;
        margin-bottom: 2px;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-row .btn-link {
        width: 100%;
    }

    .hero h1 {
        font-size: 30px;
    }
}

@media (max-width: 420px) {
    .nav-links {
        grid-template-columns: 1fr;
    }

    .landing-hero-content {
        padding: 18px;
    }

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

    .hero h1 {
        font-size: 28px;
    }
}
