:root {
    --espresso: #3A2E2A;
    --cream: #F6F1EB;
    --charcoal: #2B2B2B;
    --caramel: #C08A5A;
    --max-width: 1100px;
    --shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
    background: linear-gradient(180deg, #f9f5f0 0%, #f3ece5 40%, #fff9f3 100%);
    color: var(--charcoal);
    line-height: 1.7;
}

main {
    display: block;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--espresso);
    margin-top: 0;
    letter-spacing: -0.01em;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: var(--espresso);
    text-decoration: none;
}

a:hover {
    color: var(--caramel);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: rgba(246, 241, 235, 0.92);
    border-bottom: 1px solid rgba(58, 46, 42, 0.08);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--espresso);
}

.logo .mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
}

.logo .mark svg {
    width: 48px;
    height: 48px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav a {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
    font-weight: 500;
}

.nav a.active, .nav a:hover {
    background: rgba(192, 138, 90, 0.12);
    color: var(--espresso);
}

.nav a.pill {
    background: var(--espresso);
    color: var(--cream);
}

.nav a.pill:hover {
    background: #2f241f;
    color: var(--cream);
}

.nav-toggle {
    display: none;
    background: var(--espresso);
    color: var(--cream);
    border: none;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-weight: 600;
}

.banner {
    background: var(--espresso);
    color: var(--cream);
    padding: 0.5rem 1.25rem;
    text-align: center;
    font-weight: 500;
}

.banner .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    background: rgba(246, 241, 235, 0.18);
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    margin-right: 0.5rem;
}

.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.5rem 1.25rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.hero .copy h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.hero .copy p {
    font-size: 1.05rem;
    max-width: 540px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.1rem;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn.primary {
    background: var(--espresso);
    color: var(--cream);
    box-shadow: var(--shadow);
}

.btn.secondary {
    background: transparent;
    border-color: rgba(58, 46, 42, 0.2);
    color: var(--espresso);
}

.btn:hover {
    transform: translateY(-1px);
}

.hero-image {
    position: relative;
    min-height: 260px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, rgba(58, 46, 42, 0.9), rgba(192, 138, 90, 0.7));
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    opacity: 0.9;
}

.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.25rem 1.25rem;
}

.pill-row {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.pill-row .pill {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(58, 46, 42, 0.08);
    font-weight: 600;
    font-size: 0.9rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.2rem;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 1.1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(58, 46, 42, 0.06);
}

.card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.card-link h3 a {
    color: inherit;
    text-decoration: none;
}

.card-link h3 a:hover {
    color: var(--caramel);
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(192, 138, 90, 0.16);
    color: var(--espresso);
    font-weight: 600;
    font-size: 0.8rem;
    margin-left: 0.35rem;
}

.menu-section {
    margin-bottom: 2rem;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.9rem;
}

#seasonal-section:not(.open) {
    display: none;
}

.menu-item {
    padding: 1rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(58, 46, 42, 0.08);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.menu-item .info {
    flex: 1;
}

.menu-item .name {
    font-weight: 700;
    color: var(--espresso);
}

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

.tags {
    display: inline-flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
}

.card-link .tags {
    margin-top: auto;
}

.card-link h3 {
    margin-bottom: 0.35rem;
}

.card-link .btn-card {
    margin-top: 0.75rem;
    align-self: flex-start;
}

.recipe-card {
    margin-top: 1.5rem;
    background: #fff9f3;
    border: 1px solid rgba(58, 46, 42, 0.08);
    border-radius: 14px;
    padding: 1.2rem;
}

.resource-card {
    margin-top: 1.5rem;
    background: #fff;
    border: 1px solid rgba(58, 46, 42, 0.08);
    border-radius: 14px;
    padding: 1.2rem;
}

.resource-card ul {
    margin: 0;
    padding-left: 1.1rem;
}

.resource-card li {
    margin-bottom: 0.5rem;
}

.byline {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    color: rgba(58, 46, 42, 0.8);
}

.byline a {
    color: var(--espresso);
    text-decoration: underline;
}

.muted {
    color: rgba(58, 46, 42, 0.7);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.recipe-card h2 {
    margin-bottom: 0.5rem;
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--espresso);
}

.recipe-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.recipe-lists ul {
    margin: 0;
    padding-left: 1.1rem;
}

.recipe-lists ol {
    margin: 0;
    padding-left: 1.2rem;
}

.pagination {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.5rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(58, 46, 42, 0.15);
    background: #fff;
    color: var(--espresso);
    font-weight: 600;
}

.pagination .current {
    background: var(--espresso);
    color: var(--cream);
    border-color: var(--espresso);
}

.tag {
    background: rgba(58, 46, 42, 0.08);
    color: var(--espresso);
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(58, 46, 42, 0.06);
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li {
    margin-bottom: 0.65rem;
    padding-left: 1.2rem;
    position: relative;
}

.list li::before {
    content: '•';
    color: var(--caramel);
    position: absolute;
    left: 0;
}

.cta-block {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(58, 46, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-block h3 {
    margin-bottom: 0.2rem;
}

.hours-table {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.4rem 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(58, 46, 42, 0.06);
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(192, 138, 90, 0.18), rgba(58, 46, 42, 0.12));
    border-radius: 16px;
    padding: 1.3rem;
    color: var(--espresso);
    box-shadow: var(--shadow);
    border: 1px solid rgba(58, 46, 42, 0.06);
}

.map-placeholder .map-box {
    background: #fff;
    border-radius: 12px;
    height: 220px;
    border: 1px dashed rgba(58, 46, 42, 0.2);
    display: grid;
    place-items: center;
    color: var(--espresso);
    font-weight: 600;
}

.site-footer {
    background: #1f1a18;
    color: #f2ebe4;
    padding: 2.5rem 1.25rem;
}

.site-footer h3 {
    color: #fff;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.site-footer a {
    color: #f2d8c3;
}

.site-footer a:hover {
    color: #fff;
}

.newsletter-form {
    display: grid;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.newsletter-form button {
    border: none;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    background: #f2d8c3;
    color: #2b1d16;
    font-weight: 700;
    cursor: pointer;
}

.footnote {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

form .field {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

form label {
    font-weight: 600;
    color: var(--espresso);
}

input, textarea {
    border-radius: 8px;
    border: 1px solid rgba(58, 46, 42, 0.15);
    padding: 0.65rem 0.75rem;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    min-height: 120px;
}

.status {
    padding: 0.65rem 0.8rem;
    border-radius: 8px;
    background: rgba(192, 138, 90, 0.16);
    color: var(--espresso);
    font-weight: 600;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.8rem;
}

.gallery .frame {
    position: relative;
    padding-top: 65%;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(58, 46, 42, 0.06);
}

.gallery .frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
}

.frame.one::after { background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1200&q=80'); }
.frame.two::after { background-image: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1200&q=80'); }
.frame.three::after { background-image: url('https://images.unsplash.com/photo-1521017432531-fbd92d768814?auto=format&fit=crop&w=1200&q=80'); }
.frame.four::after { background-image: url('https://images.unsplash.com/photo-1464306076886-da185f6a9d05?auto=format&fit=crop&w=1200&q=80'); }

@media (max-width: 800px) {
    .nav {
        display: none;
        position: absolute;
        top: 72px;
        right: 16px;
        background: #fff;
        padding: 0.75rem;
        border-radius: 12px;
        flex-direction: column;
        min-width: 200px;
        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero {
        padding-top: 1.5rem;
    }

    .hero-image {
        min-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto;
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
