/* ── TOKENS ─────────────────────────────────────────── */
:root {
    --cream:   #F4EFE4;
    --parchment: #EDE5D4;
    --terra: #b85c2a;
    --terra-dk:#8C3E18;
    --espresso:#1C1108;
    --gold:    #C49A3C;
    --mist: #0e0e0e;
    --white:   #FDFAF5;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px;}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

body {
    background: var(--cream);
    color: var(--espresso);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 9999;
    pointer-events: none;
    opacity: .028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* ── UTILITIES ───────────────────────────────────────── */
.container { max-width: calc(100% - 5rem); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }


.eyebrow {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--terra);
}
.divider {
    width: 40px; height: 1px;
    background: var(--gold);
    margin: 1.25rem 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* Fade-in on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.5rem 0;
    transition: background .4s, padding .4s, box-shadow .4s;
}
nav.scrolled {
    background: rgba(244,239,228,.92);
    backdrop-filter: blur(14px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 rgba(28,17,8,.08);
}
nav .container {
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--espresso);
}
.nav-logo span { color: var(--terra); }
.nav-links {
    display: flex; gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgb(224, 127, 75);
    text-shadow: 2px 0px 1px #0e0e0e;
    transition: color .25s;
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .65rem 1.5rem;
    background: var(--terra);
    color: #fff !important;
    font-size: .78rem !important;
    font-weight: 500 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    border-radius: 2px;
    transition: background .25s, transform .2s !important;
    color: white !important;
}
.nav-cta:hover { background: var(--terra-dk); transform: translateY(-1px); }
.nav-mobile { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-mobile span { width: 22px; height: 1.5px; background: var(--espresso); display: block; transition: .3s; }

/* ── HERO ────────────────────────────────────────────── */
#hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
}
.hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem clamp(1.5rem,5vw,5rem) 5rem clamp(1.5rem,5vw,6rem);
    position: relative; z-index: 2;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: .75rem;
    margin-bottom: 2rem;
}
.hero-tag::before {
    content: '';
    display: inline-block;
    width: 32px; height: 1px;
    background: var(--gold);
}
.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.01em;
    color: var(--espresso);
    margin-bottom: 1.5rem;
}
.hero-h1 em {
    font-style: italic;
    color: var(--terra);
}
.hero-sub {
    font-size: 1.05rem;
    color: var(--mist);
    max-width: 38ch;
    margin-bottom: 3rem;
    line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: 1rem 2.25rem;
    background: var(--terra);
    color: #fff;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .3s, box-shadow .3s, transform .2s;
    box-shadow: 0 4px 24px rgba(184,92,42,.22);
}
.btn-primary:hover { background: var(--terra-dk); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(184,92,42,.3); }
.btn-ghost {
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mist);
    display: flex; align-items: center; gap: .5rem;
    transition: color .25s, gap .3s;
}
.btn-ghost:hover { color: var(--terra); gap: .9rem; }
.hero-badge {
    margin-top: 4rem;
    display: inline-flex; align-items: center; gap: 1rem;
}
.badge-stars {
    display: flex; gap: 2px;
    color: var(--gold);
    font-size: 1rem;
}
.badge-text { font-size: .82rem; color: var(--mist); }
.badge-text strong { color: var(--espresso); font-weight: 500; }

/* Hero right — mosaic */
.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--parchment);
}
.hero-mosaic {
    position: absolute; inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
}
.mosaic-cell {
    overflow: hidden;
    position: relative;
}
.mosaic-cell img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
    filter: saturate(.9);
}
.mosaic-cell:hover img { transform: scale(1.06); }
.mosaic-cell.tall { grid-row: span 2; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
}

/* ── STRIP ───────────────────────────────────────────── */
.strip {
    background: var(--espresso);
    padding: 1.1rem 0;
    overflow: hidden;
}
.strip-inner {
    display: flex; gap: 4rem;
    animation: ticker 22s linear infinite;
    white-space: nowrap;
}
.strip-item {
    display: flex; align-items: center; gap: .75rem;
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    flex-shrink: 0;
}
.strip-item span { color: var(--gold); font-size: .9rem; }
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── ABOUT ───────────────────────────────────────────── */
#about {
    padding: 8rem 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-img-wrap {
    position: relative;
}
.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 3px;
    filter: saturate(.85);
}
.about-img-accent {
    position: absolute;
    bottom: -2.5rem; right: -2.5rem;
    width: 55%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 3px;
    border: 6px solid var(--cream);
    filter: saturate(.85);
    box-shadow: 0 20px 60px rgba(28,17,8,.14);
}
.about-year-badge {
    position: absolute;
    top: 2rem; left: -2rem;
    background: var(--terra);
    color: #fff;
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(184,92,42,.25);
}
.about-year-badge .yr { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; display: block; line-height: 1; }
.about-year-badge .yr-label { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; opacity: .8; }

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.12;
    margin-bottom: 1.5rem;
}
.about-content h2 em { font-style: italic; color: var(--terra); }
.about-content p { color: var(--mist); margin-bottom: 1.25rem; font-size: .96rem; }
.about-stats {
    display: flex; gap: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(28,17,8,.08);
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--terra);
    line-height: 1;
    display: block;
}
.stat-label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mist); }

/* ── MENU ────────────────────────────────────────────── */
#menu {
    padding: 8rem 0;
    background: var(--espresso);
    position: relative;
    overflow: hidden;
}
#menu::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.menu-header { text-align: center; margin-bottom: 5rem; }
.menu-header .eyebrow { color: var(--gold); }
.menu-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-top: .75rem;
}
.menu-header h2 em { font-style: italic; color: var(--gold); }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
}
.menu-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: .85;
    cursor: pointer;
}
.menu-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out), filter .6s;
    filter: brightness(.75) saturate(.8);
}
.menu-card:hover .menu-card-img { transform: scale(1.07); filter: brightness(.6) saturate(.9); }
.menu-card-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(to top, rgba(28,17,8,.9) 0%, transparent 100%);
    transform: translateY(40%);
    transition: transform .6s var(--ease-out);
}
.menu-card:hover .menu-card-info { transform: none; }
.menu-card-tag {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}
.menu-card-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
}
.menu-card-desc {
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    margin-top: .6rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s .15s, transform .4s .15s;
}
.menu-card:hover .menu-card-desc { opacity: 1; transform: none; }

.menu-cta-wrap { text-align: center; margin-top: 4rem; }

/* ── REVIEWS ─────────────────────────────────────────── */
#reviews {
    padding: 8rem 0;
    background: var(--parchment);
    position: relative;
}
.reviews-header { text-align: center; margin-bottom: 5rem; }
.reviews-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
}
.reviews-header h2 em { font-style: italic; color: var(--terra); }
.reviews-overall {
    display: flex; align-items: center; justify-content: center; gap: 1.25rem;
    margin-top: 1.5rem;
}
.review-big-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--terra);
    line-height: 1;
}
.review-stars-big { font-size: 1.3rem; color: var(--gold); display: flex; gap: 3px; }
.review-count { font-size: .8rem; color: var(--mist); letter-spacing: .08em; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: transform .35s var(--ease-out), box-shadow .35s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(28,17,8,.1); }
.review-card::before {
    content: '\201C';
    position: absolute;
    top: -1rem; left: 1.5rem;
    font-family: var(--font-display);
    font-size: 8rem;
    color: rgba(184,92,42,.07);
    line-height: 1;
    pointer-events: none;
}
.review-stars { display: flex; gap: 2px; color: var(--gold); font-size: .85rem; margin-bottom: 1.25rem; }
.review-text {
    font-size: .95rem;
    color: var(--espresso);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.1rem;
}
.review-author { display: flex; align-items: center; gap: 1rem; }
.review-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--terra);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.review-name { font-weight: 500; font-size: .88rem; color: var(--espresso); }
.review-meta { font-size: .75rem; color: var(--mist); }

/* ── GALLERY STRIP ───────────────────────────────────── */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 320px;
    overflow: hidden;
}
.gallery-strip-img {
    overflow: hidden;
    position: relative;
}
.gallery-strip-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out), filter .5s;
    filter: saturate(.75);
}
.gallery-strip-img:hover img { transform: scale(1.1); filter: saturate(1); }

/* ── CONTACT ─────────────────────────────────────────── */
#contact {
    padding: 8rem 0;
    background: var(--cream);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}
.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.contact-info h2 em { font-style: italic; color: var(--terra); }
.contact-info p { color: var(--mist); font-size: .96rem; margin-bottom: 3rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-icon {
    width: 44px; height: 44px; border-radius: 2px;
    background: var(--parchment);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid rgba(28,17,8,.06);
}
.contact-item-label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--terra); margin-bottom: .25rem; }
.contact-item-value { font-size: .96rem; color: var(--espresso); font-weight: 400; }
.contact-item-value a { transition: color .25s; }
.contact-item-value a:hover { color: var(--terra); }

.hours-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .5rem .5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(28,17,8,.08);
}
.hours-row { display: flex; justify-content: space-between; font-size: .88rem; padding: .35rem 0; }
.hours-day { color: var(--mist); }
.hours-time { color: var(--espresso); font-weight: 400; }

.contact-form-wrap {
    background: var(--espresso);
    padding: 3.5rem;
    border-radius: 4px;
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: .5rem;
}
.form-subtitle { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: .6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 2px;
    padding: .85rem 1rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: .9rem;
    outline: none;
    transition: border-color .25s, background .25s;
    appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.09); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--espresso); color: #fff; }
.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--terra);
    color: #fff;
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s, transform .2s;
    margin-top: .5rem;
}
.form-submit:hover { background: var(--terra-dk); transform: translateY(-1px); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
    background: var(--espresso);
    padding: 4rem 0 2.5rem;
    border-top: 1px solid rgba(255,255,255,.05);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .nav-logo { font-size: 1.8rem; color: var(--white); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.4); margin-top: 1rem; max-width: 28ch; line-height: 1.7; }
.footer-col h4 {
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.45); transition: color .25s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .78rem; color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .25s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── MOBILE ──────────────────────────────────────────── */
@media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 50vw; min-height: 280px; }
    .hero-left { padding: 7rem 1.5rem 3rem; }
    .hero-overlay { background: linear-gradient(to bottom, transparent, var(--cream) 90%); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-main { aspect-ratio: 4/3; }
    .about-img-accent { right: -1rem; bottom: -1rem; }
    .about-year-badge { left: 1rem; }
    .menu-grid { grid-template-columns: 1fr 1fr; }
    .menu-card:nth-child(3) { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 220px; }
    .gallery-strip-img:nth-child(n+4) { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: span 2; }
    .nav-links, .nav-cta { display: none; }
    .nav-mobile { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 2rem 1.5rem; }
}
@media (max-width: 600px) {
    .menu-grid { grid-template-columns: 1fr; }
    .menu-card:nth-child(n) { display: block; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .about-stats { flex-wrap: wrap; gap: 1.5rem; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .gallery-strip-img:nth-child(n+3) { display: none; }
}

.btn-order{
    width: 300px;
    height: 100px;
    background: linear-gradient(135deg, #b85c2d, #cf7135);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    overflow: hidden;
    padding: 15px 25px;
}

.btn-order:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    background: linear-gradient(135deg, #cf7135, #b85c2d);
}

.img-thumbnail{
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: white;
    border-radius: 6px;
    padding: 8px;
}

.btn-text{
    color: white;
    font-size: 1.2rem;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.img-logo{
    height: 60px;
}

.icon-text{
    color: white;
    font-size: 1rem;
    margin-left: auto;
}

.text-theme{
    color: var(--espresso)!important;
}

#mapContainer {
    padding: 0px!important;
    background: transparent;
}
#mapPlace{ width: 100%!important;}

#contact .contact-grid {
    gap: 2rem;
}


@media (max-width: 767px) {
    .container { max-width: 500px; }
    #mapPlace{ width: 300px}
}
