:root {
    --cream: #fdfbf7;
    --white: #ffffff;
    --wood: #2c2621;
    --ink: #3e362e;
    --muted: #8c7a6b;
    --stone: #e8e3dd;
    --burgundy: #9a2e20;
    --gold: #d4a373;
    --gold-soft: rgba(212, 163, 115, 0.12);
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.04);
    --shadow-deep: 0 30px 80px rgba(44, 38, 33, 0.24);
    --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
    --font-heading: "PT Serif", Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body::selection {
    background: var(--gold);
    color: var(--wood);
}

img,
svg {
    display: block;
}

svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--wood);
    color: var(--cream);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 251, 247, 0.92);
    border-bottom: 1px solid var(--stone);
    backdrop-filter: blur(18px);
    transition: box-shadow 220ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(44, 38, 33, 0.08);
}

.site-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 78px;
    gap: clamp(18px, 4vw, 60px);
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px clamp(20px, 4vw, 64px);
}

.nav-group {
    display: flex;
    gap: clamp(18px, 3vw, 42px);
    color: var(--muted);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-group:last-child {
    justify-content: flex-end;
}

.nav-group a {
    transition: color 180ms ease;
}

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

.brand,
.footer-brand {
    color: var(--burgundy);
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3vw, 2rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: min(80svh, 760px);
    display: grid;
    place-items: center;
    padding: clamp(92px, 14vw, 150px) 20px;
    overflow: hidden;
    text-align: center;
    color: var(--white);
    
   
}

.hero img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: -5;
    transition: opacity 0.5s ease;
    
}

.hero::after {
    position: absolute;
    inset: 0;
    content: "";

    background:hsla(0, 0%, 0%, 0.50);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 760px;
    flex-direction: column;
    align-items: center;
}

.hero-kicker,
.section-kicker {
    margin: 0 0 12px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.3vw, 1.65rem);
    font-style: italic;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(4.2rem, 10vw, 7.2rem);
    line-height: 0.95;
}

h2 {
    margin-bottom: 18px;
    color: var(--wood);
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 1.04;
}

h3 {
    margin-bottom: 0;
    color: var(--wood);
    font-size: 1.25rem;
}

.hero p:not(.hero-kicker) {
    max-width: 560px;
    margin-bottom: 38px;
    color: var(--stone);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 300;
    line-height: 1.75;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    padding: 13px 24px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background-color 220ms ease,
        color 220ms ease,
        border-color 220ms ease,
        transform 220ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--burgundy);
    color: var(--white);
}

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

.button-outline {
    border-color: var(--ink);
    color: var(--ink);
}

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

.button-gold {
    align-self: flex-start;
    background: var(--gold);
    color: var(--wood);
}

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

.section {
    padding: clamp(72px, 10vw, 112px) clamp(20px, 5vw, 64px);
}

.section-heading {
    max-width: 680px;
    margin: 0 auto clamp(46px, 7vw, 72px);
    text-align: center;
}

.menu-section {
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 48px;
    max-width: 1130px;
    margin: 0 auto 62px;
    text-align: left;
}

.menu-item-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--stone);
}

.menu-item-head span {
    color: var(--burgundy);
    font-family: var(--font-heading);
    font-size: 1.12rem;
}

.menu-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.story-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
    gap: clamp(34px, 7vw, 88px);
    align-items: center;
    background: var(--white);
}

.story-copy {
    max-width: 760px;
}

.story-copy p:last-child {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(44, 38, 33, 0.12), rgba(44, 38, 33, 0.72)),
        url("https://images.unsplash.com/photo-1579751626657-72bc17010498?auto=format&fit=crop&w=900&q=88") center / cover;
    color: var(--white);
    box-shadow: var(--shadow-deep);
}

.story-card span {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 9vw, 6rem);
    line-height: 0.9;
}

.story-card p {
    max-width: 260px;
    margin: 14px 0 0;
    color: var(--stone);
    line-height: 1.6;
}

.reviews-section {
    background: var(--white);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1130px;
    margin: 0 auto;
}

.review-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 227, 221, 0.7);
    border-radius: 16px;
    padding: 36px 30px;
    background: var(--cream);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 240ms ease, border-color 240ms ease;
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.review-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 2rem;
}

.stars {
    margin-bottom: 22px;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.review-card p {
    margin-bottom: 0;
    color: var(--wood);
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-style: italic;
    line-height: 1.65;
}

.site-footer {
    padding: clamp(70px, 9vw, 112px) clamp(20px, 5vw, 64px) 34px;
    background: var(--wood);
    color: var(--stone);
}

.footer-grid,
.footer-bottom {
    max-width: 1130px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    gap: clamp(44px, 8vw, 92px);
}

.footer-info h2 {
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-info>p {
    max-width: 500px;
    margin-bottom: 48px;
    color: rgba(232, 227, 221, 0.8);
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-item h3 {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-item p {
    margin: 0;
    color: rgba(232, 227, 221, 0.9);
    font-size: 0.92rem;
    line-height: 1.65;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 56px;
}

.social-links a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(232, 227, 221, 0.22);
    border-radius: 50%;
    color: var(--stone);
    transition: color 180ms ease, border-color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
}

.contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow: hidden;
    border-radius: 24px;
    padding: clamp(30px, 5vw, 48px);
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow-deep);
}

.contact-form::before {
    position: absolute;
    inset: 0 0 auto;
    height: 8px;
    content: "";
    background: var(--gold);
}

.contact-form h2 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    color: var(--wood);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--stone);
    border-radius: 8px;
    padding: 13px 15px;
    background: var(--white);
    color: var(--ink);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.18);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 82px;
    padding-top: 28px;
    border-top: 1px solid rgba(232, 227, 221, 0.18);
    color: rgba(232, 227, 221, 0.5);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .site-nav {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .brand {
        order: -1;
    }

    .nav-group,
    .nav-group:last-child {
        justify-content: center;
    }

    .menu-grid,
    .review-grid,
    .story-section,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        min-height: 280px;
    }
}

@media (max-width: 620px) {
    .site-nav {
        min-height: auto;
        padding-block: 16px;
    }

    .nav-group {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        font-size: 0.76rem;
    }

    .hero {
        min-height: 72svh;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
    }
}