:root {
    --color-background: #fcf4ea;
    --color-surface: #ffffff;
    --color-primary: #d9772d;
    --color-primary-dark: #b45e1e;
    --color-text: #2f2a26;
    --color-muted: #7a7068;
    --color-accent: #f2b66d;
    --max-width: 1100px;
    --shadow-soft: 0 20px 45px rgba(50, 35, 20, 0.08);
    --radius-large: 24px;
}

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

body {
    margin: 0;
    font-family: "DM Sans", "Segoe UI", sans-serif;
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a:focus {
    outline: 2px dashed var(--color-primary);
    outline-offset: 3px;
}

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

h1,
 h2,
 h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    color: var(--color-text);
    margin: 0;
}

h1 {
    font-size: clamp(2.4rem, 4vw + 1rem, 3.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0;
    color: var(--color-muted);
}

section {
    padding: clamp(3rem, 5vw, 4.5rem) 1.5rem;
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-heading p {
    margin-top: 0.75rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: rgba(252, 244, 234, 0.85);
    transition: transform 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.brand {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}
.nav-links {
    list-style: none;
    display: none;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 72px;
    right: 1.5rem;
    background: var(--color-surface);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    min-width: 220px;
    padding: 1.25rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.2s ease;
}

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

.nav-links li + li {
    margin-top: 0.35rem;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(47, 42, 38, 0.2);
    background: var(--color-surface);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.nav-toggle .bar {
    display: block;
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle .bar:nth-of-type(1) {
    transform: translateY(-6px);
}

.nav-toggle .bar:nth-of-type(2) {
    transform: translateY(0);
}

.nav-toggle .bar:nth-of-type(3) {
    transform: translateY(6px);
}

.nav-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(217, 119, 45, 0.25);
}

.nav-open .nav-toggle .bar:nth-of-type(1) {
    transform: translateY(0) rotate(45deg);
}

.nav-open .nav-toggle .bar:nth-of-type(2) {
    opacity: 0;
}

.nav-open .nav-toggle .bar:nth-of-type(3) {
    transform: translateY(0) rotate(-45deg);
}

.nav-open #primary-navigation {
    display: flex;
}

.nav-open {
    overflow: hidden;
}

.nav-open #primary-navigation a {
    padding: 0.65rem 0;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
    padding-top: clamp(4rem, 6vw, 6rem);
    padding-bottom: clamp(4rem, 6vw, 6rem);
    min-height: 85vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn.primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 10px 25px rgba(217, 119, 45, 0.25);
}

.btn.primary:hover,
.btn.primary:focus-visible {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn.outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn.outline:hover,
.btn.outline:focus-visible {
    border-color: var(--color-primary-dark);
    color: var(--color-primary-dark);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    min-height: 360px;
}

.about {
    background: linear-gradient(135deg, rgba(242, 182, 109, 0.18), rgba(252, 244, 234, 0.9));
}

.about p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.menu {
    background: var(--color-background);
}

.menu-grid {
    display: grid;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.menu-category {
    background: var(--color-surface);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.menu-category h3 {
    margin-bottom: 1.25rem;
}

.menu-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.item-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-text);
}

.item-price {
    font-weight: 700;
    color: var(--color-primary);
}

.item-desc {
    margin-top: 0.4rem;
    font-size: 0.95rem;
}

.why {
    background: var(--color-surface);
}

.why-grid {
    display: grid;
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-card {
    padding: 1.75rem;
    background: #fff8f0;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(186, 124, 61, 0.1);
}

.why-card h3 {
    margin-bottom: 0.75rem;
}

.visit {
    background: var(--color-background);
}

.visit-layout {
    display: grid;
    gap: 2rem;
    align-items: stretch;
}

.visit-card {
    background: var(--color-surface);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.5rem;
}

.visit-card h3 {
    font-size: 1.5rem;
}

.visit-info {
    margin: 0;
    display: grid;
    gap: 1.25rem;
}

.visit-info div {
    display: grid;
    gap: 0.35rem;
}

.visit-info dt {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--color-primary);
}

.visit-info dd {
    margin: 0;
    font-size: 0.98rem;
    color: var(--color-text);
}

.directions-link {
    justify-self: start;
    padding-inline: 1.5rem;
}

.map-placeholder {
    background: repeating-linear-gradient(135deg, rgba(47, 42, 38, 0.08) 0, rgba(47, 42, 38, 0.08) 12px, transparent 12px, transparent 24px);
    border-radius: 18px;
    min-height: 220px;
    display: grid;
    place-items: center;
    font-weight: 600;
    color: rgba(47, 42, 38, 0.55);
}

.map-embed iframe {
    width: 100%;
    min-height: 260px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.map-embed iframe:hover,
.map-embed iframe:focus-visible {
    box-shadow: 0 25px 50px rgba(47, 42, 38, 0.18);
}

.order {
    padding: clamp(3.5rem, 6vw, 5rem) 1.5rem;
    background: linear-gradient(135deg, rgba(217, 119, 45, 0.9), rgba(237, 181, 114, 0.9));
    color: #fff;
}

.order-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 1.25rem;
}

.order-content h2 {
    color: #fff;
}

.order-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.order-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.order .btn.primary {
    color: #fff;
    background: #2f2a26;
    box-shadow: none;
}

.order .btn.primary:hover,
.order .btn.primary:focus-visible {
    background: rgba(47, 42, 38, 0.85);
}

.order .phone {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.footer {
    background: #201b17;
    color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 1.5rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer strong {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    color: #fff;
}

.footer-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

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

@media (min-width: 720px) {
    .nav-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex !important;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .nav-links li + li {
        margin-top: 0;
    }

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

    .hero-actions {
        gap: 1.25rem;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .visit-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .order-actions {
        flex-direction: row;
        justify-content: center;
    }

    .order-actions .phone {
        margin-left: 0.5rem;
    }
}

@media (min-width: 980px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
