/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1A1A1A;
    background: #F7F4F0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.2; }

/* ─── Skip Link ─── */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #1A1A1A; color: #F5E6D3;
    padding: .5rem 1rem; border-radius: 0 0 4px 4px;
    z-index: 200; font-size: .875rem;
}
.skip-link:focus { top: 0; }

/* ─── Container ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Typography ─── */
.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #C7523A;
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1A1A1A;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.0625rem;
    color: #555;
    max-width: 560px;
    line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8125rem 1.75rem;
    border-radius: 6px;
    font-size: .9375rem;
    font-weight: 500;
    transition: background .25s, color .25s, transform .15s, box-shadow .25s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
    background: #C7523A; color: #fff;
    box-shadow: 0 4px 16px rgba(199,82,58,.3);
}
.btn-primary:hover { background: #B34732; box-shadow: 0 6px 24px rgba(199,82,58,.4); }
.btn-ghost {
    background: rgba(255,255,255,.12); color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-outline {
    background: transparent; color: #1A1A1A;
    border: 1.5px solid #1A1A1A;
}
.btn-outline:hover { background: #1A1A1A; color: #F5E6D3; }
.btn-accent { background: #C7523A; color: #fff; }
.btn-accent:hover { background: #B34732; }
.btn-small {
    padding: .5rem 1rem;
    font-size: .8125rem;
    border-radius: 4px;
}

/* ─── Header ─── */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(247,244,240,.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26,26,26,.06);
    transition: background .3s, box-shadow .3s;
}
.header.scrolled {
    background: rgba(247,244,240,.95);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.header-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo { display: flex; align-items: center; gap: .625rem; }
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem; font-weight: 600; color: #1A1A1A;
}
.logo-tagline {
    font-size: .6875rem; letter-spacing: .12em;
    text-transform: uppercase; color: #C7523A; font-weight: 500;
}
.logo--footer .logo-name { color: #F5E6D3; }
.logo--footer .logo-tagline { color: #C7523A; }

/* ─── Nav ─── */
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link {
    padding: .5rem .875rem;
    font-size: .875rem; font-weight: 500;
    color: #444; border-radius: 4px;
    transition: color .2s, background .2s;
}
.nav-link:hover { color: #1A1A1A; background: rgba(26,26,26,.04); }
.nav-cta {
    margin-left: .5rem;
    background: #C7523A; color: #fff !important;
    border-radius: 4px; padding: .5rem 1rem;
}
.nav-cta:hover { background: #B34732; }

/* ─── Nav Toggle ─── */
.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    padding: .5rem; z-index: 110;
}
.nav-toggle-bar {
    display: block; width: 22px; height: 2px;
    background: #1A1A1A; border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center;
    padding-top: 72px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,.82) 0%, rgba(26,26,26,.55) 60%, rgba(26,26,26,.3) 100%);
}
.hero-content {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 320px;
    gap: 3rem; align-items: center;
    padding: 3rem 0;
    width: 100%;
}
.hero-card {
    max-width: 640px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .375rem;
    font-size: .75rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: #F5E6D3;
    background: rgba(199,82,58,.2); border: 1px solid rgba(199,82,58,.3);
    padding: .375rem .875rem; border-radius: 100px;
    margin-bottom: 1.5rem;
}
.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: #F5E6D3;
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.hero-headline em { font-style: italic; color: #F5E6D3; }
.text-accent { color: #E8734E; }
.hero-sub {
    font-size: 1.0625rem; color: rgba(245,230,211,.7);
    line-height: 1.7; margin-bottom: 2rem; max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ─── Hero Stats ─── */
.hero-stats { display: flex; flex-direction: column; gap: .75rem; }
.stat-card {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    transition: background .25s, transform .25s;
}
.stat-card:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.stat-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(199,82,58,.2); border-radius: 8px;
    color: #E8734E;
}
.stat-info { display: flex; flex-direction: column; }
.stat-value { font-family: 'Playfair Display', Georgia, serif; font-size: 1.0625rem; font-weight: 600; color: #F5E6D3; }
.stat-label { font-size: .75rem; color: rgba(245,230,211,.55); letter-spacing: .06em; text-transform: uppercase; }

/* ─── Scroll Indicator ─── */
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    color: rgba(245,230,211,.4); font-size: .6875rem; letter-spacing: .15em; text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(245,230,211,.4), transparent); }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ─── Section ─── */
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ─── Menu ─── */
.menu-section { background: #F7F4F0; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.menu-card {
    background: #fff; border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: box-shadow .3s, transform .3s;
}
.menu-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-4px); }
.menu-card-img { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.menu-card:hover .menu-card-img img { transform: scale(1.04); }
.menu-card-badge {
    position: absolute; top: .75rem; left: .75rem;
    background: #C7523A; color: #fff;
    font-size: .6875rem; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; padding: .25rem .625rem; border-radius: 100px;
}
.menu-card-body { padding: 1.5rem; }
.menu-card-title {
    font-size: 1.375rem; margin-bottom: .5rem; color: #1A1A1A;
}
.menu-card-desc { font-size: .9375rem; color: #666; line-height: 1.65; }
.menu-cta { text-align: center; }

/* ─── About ─── */
.about-section { background: #1A1A1A; color: #F5E6D3; }
.about-section .section-title { color: #F5E6D3; }
.about-section .section-desc { color: rgba(245,230,211,.6); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.about-images { position: relative; }
.about-img-main { border-radius: 12px; overflow: hidden; aspect-ratio: 7/9; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute; bottom: -2rem; right: -1.5rem;
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
    border: 3px solid rgba(245,230,211,.1);
    aspect-ratio: 4/3;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-text {
    font-size: 1rem; color: rgba(245,230,211,.7);
    line-height: 1.8; margin-bottom: 1rem;
}
.about-text:not(:last-child) { margin-bottom: 1rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; margin-top: 2rem; }
.value-item { display: flex; align-items: center; gap: .75rem; }
.value-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #E8734E;
}
.value-item span { font-size: .9375rem; color: rgba(245,230,211,.85); font-weight: 500; }

/* ─── Gallery ─── */
.gallery-section { background: #F7F4F0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.04); }

/* ─── Visit ─── */
.visit-section { background: #1A1A1A; }
.visit-card {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; border-radius: 16px; overflow: hidden;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}
.visit-content { padding: 3.5rem; display: flex; flex-direction: column; }
.visit-content .section-title { color: #F5E6D3; }
.visit-content .section-desc { color: rgba(245,230,211,.6); margin-bottom: 2rem; }
.visit-details { display: flex; flex-direction: column; gap: 1.25rem; margin-top: auto; }
.visit-detail { display: flex; align-items: flex-start; gap: 1rem; }
.visit-detail-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(199,82,58,.15); border-radius: 8px;
    color: #E8734E;
}
.visit-detail-label { display: block; font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,230,211,.45); margin-bottom: .125rem; }
.visit-detail-value { font-size: .9375rem; color: rgba(245,230,211,.9); font-weight: 500; line-height: 1.5; }
.visit-link { color: #E8734E; transition: color .2s; }
.visit-link:hover { color: #F09060; }
.visit-map { background: #222; min-height: 320px; display: flex; align-items: center; justify-content: center; }
.map-placeholder { text-align: center; padding: 2rem; }
.map-placeholder svg { margin: 0 auto .75rem; }
.map-placeholder p { font-size: .875rem; color: rgba(245,230,211,.5); margin-bottom: 1rem; line-height: 1.6; }

/* ─── Footer ─── */
.footer { background: #111; padding: 3rem 0 1.5rem; color: rgba(245,230,211,.5); }
.footer-inner {
    display: grid; grid-template-columns: 1fr auto auto;
    gap: 2rem; align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-tagline { font-size: .875rem; margin-top: .5rem; color: rgba(245,230,211,.4); }
.footer-contact p { display: flex; align-items: center; gap: .5rem; font-size: .875rem; margin-bottom: .375rem; }
.footer-link { transition: color .2s; }
.footer-link:hover { color: #E8734E; }
.footer-hours-label { display: block; font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,230,211,.35); }
.footer-hours-value { font-size: .9375rem; color: rgba(245,230,211,.8); font-weight: 500; }
.footer-bottom { padding-top: 1.5rem; text-align: center; font-size: .8125rem; color: rgba(245,230,211,.25); }

/* ─── Toast ─── */
.cookie-toast {
    position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(120%);
    background: #1A1A1A; color: rgba(245,230,211,.8);
    padding: 1rem 1.5rem; border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    display: flex; align-items: center; gap: 1rem;
    max-width: 480px; width: calc(100% - 3rem);
    z-index: 90; font-size: .875rem;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(255,255,255,.06);
}
.cookie-toast.show { transform: translateX(-50%) translateY(0); }
.cookie-toast .btn-small { flex-shrink: 0; }

/* ─── Animations ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; margin-top: 2rem; }
    .stat-card { flex: 1; min-width: 160px; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img-float { right: 1rem; bottom: -1.5rem; }
    .visit-card { grid-template-columns: 1fr; }
    .visit-map { min-height: 240px; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: 0; bottom: 0;
        width: 280px; flex-direction: column;
        background: #F7F4F0; padding: 5rem 1.5rem 2rem;
        box-shadow: -8px 0 32px rgba(0,0,0,.12);
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(.4,0,.2,1);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link { width: 100%; padding: .75rem .5rem; }
    .nav-cta { margin-left: 0; margin-top: .5rem; text-align: center; justify-content: center; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item--wide { grid-column: span 2; }
    .about-values { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .section { padding: 4rem 0; }
    .visit-content { padding: 2rem; }
}
@media (max-width: 480px) {
    .hero-stats { flex-direction: column; }
    .stat-card { min-width: auto; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--wide { grid-column: span 1; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}
