/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    background: #FDF8F4;
    color: #1A1A1A;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Color Variables ── */
:root {
    --terracotta: #B8572D;
    --terracotta-dark: #9A4520;
    --terracotta-light: #D4784E;
    --sand: #FDF8F4;
    --sand-dark: #F3E8DF;
    --sand-mid: #E8D5C4;
    --charcoal: #1A1A1A;
    --charcoal-soft: #3D3D3D;
    --cream: #FFF9F5;
    --white: #FFFFFF;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.accent { color: var(--terracotta); }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
    transition: all 0.25s ease; letter-spacing: 0.01em;
}
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,87,45,0.3); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ── Section Eyebrow ── */
.section-eyebrow {
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--terracotta); margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 24px;
    color: var(--charcoal);
}

/* ── HEADER ── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253,248,244,0.92); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184,87,45,0.1);
    transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.08); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--terracotta); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem;
}
.logo-text { font-weight: 700; font-size: 1.15rem; color: var(--charcoal); letter-spacing: -0.01em; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 0.9rem; font-weight: 500; color: var(--charcoal-soft); transition: color 0.2s; }
.nav a:hover { color: var(--terracotta); }
.nav-toggle { display: none; width: 40px; height: 40px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 22px; height: 2px; background: var(--charcoal);
    border-radius: 2px; transition: all 0.3s;
}
.hamburger { position: relative; margin: auto; }
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── HERO ── */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.6) 50%, rgba(184,87,45,0.4) 100%),
        url('https://images.pexels.com/photos/11289590/pexels-photo-11289590.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    z-index: 0;
}
.hero-content {
    position: relative; z-index: 1; text-align: center; max-width: 800px;
}
.hero-eyebrow {
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.2em; color: var(--terracotta-light); margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.4rem, 7vw, 4.8rem); color: var(--white);
    margin-bottom: 24px; line-height: 1.05;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.8);
    max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5); font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 0.2em;
}
.scroll-line {
    width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── MARQUEE ── */
.marquee {
    background: var(--charcoal); padding: 16px 0; overflow: hidden;
}
.marquee-track {
    display: flex; gap: 24px; align-items: center;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.marquee-track span {
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em; color: rgba(255,255,255,0.7); white-space: nowrap;
}
.dot { color: var(--terracotta) !important; font-size: 0.5rem !important; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── MENU ── */
.menu { padding: 100px 0; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.menu-card {
    background: var(--white); border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.menu-card-img { height: 220px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 24px; }
.menu-card-body h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--charcoal); }
.menu-card-body p { font-size: 0.9rem; color: var(--charcoal-soft); line-height: 1.6; }

/* ── ABOUT ── */
.about { padding: 100px 0; background: var(--sand-dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 16px; overflow: hidden; }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-float {
    position: absolute; bottom: -40px; right: -24px;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    border: 4px solid var(--sand-dark);
}
.about-img-float img { width: 100%; height: 240px; object-fit: cover; }
.about-content p { font-size: 1rem; color: var(--charcoal-soft); line-height: 1.8; margin-bottom: 16px; }
.about-stats {
    display: flex; gap: 40px; margin-top: 40px;
    padding-top: 32px; border-top: 1px solid var(--sand-mid);
}
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--terracotta); line-height: 1; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--charcoal-soft); margin-top: 4px; }

/* ── GALLERY ── */
.gallery { padding: 100px 0; }
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 5/4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ── VISIT ── */
.visit { padding: 100px 0; background: var(--charcoal); color: var(--white); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.visit .section-title { color: var(--white); }
.visit-details { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.visit-item { display: flex; gap: 20px; align-items: flex-start; }
.visit-icon {
    width: 48px; height: 48px; flex-shrink: 0; border-radius: 10px;
    background: rgba(184,87,45,0.15); color: var(--terracotta-light);
    display: flex; align-items: center; justify-content: center;
}
.visit-item strong { display: block; font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--terracotta-light); margin-bottom: 4px; }
.visit-item p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.visit-item a { color: rgba(255,255,255,0.9); transition: color 0.2s; }
.visit-item a:hover { color: var(--terracotta-light); }
.visit-form-wrap { }
.visit-form-inner {
    background: var(--white); border-radius: 16px; padding: 40px;
    color: var(--charcoal);
}
.visit-form-inner h3 { font-size: 1.5rem; margin-bottom: 8px; }
.visit-form-inner > p { font-size: 0.9rem; color: var(--charcoal-soft); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--charcoal-soft); }
.form-group input, .form-group textarea {
    padding: 12px 16px; border: 1.5px solid var(--sand-mid); border-radius: 8px;
    font-family: inherit; font-size: 0.95rem; color: var(--charcoal);
    transition: border-color 0.2s; background: var(--sand);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--terracotta);
    background: var(--white);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B0A090; }
.form-success {
    display: none; align-items: center; gap: 10px; padding: 14px 18px;
    background: #E8F5E9; border-radius: 8px; margin-top: 16px;
    font-size: 0.9rem; color: #2E7D32; font-weight: 500;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success.show { display: flex; }

/* ── FOOTER ── */
.footer { background: #111111; color: rgba(255,255,255,0.5); padding: 60px 0 32px; }
.footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 32px; flex-wrap: wrap;
}
.footer-brand p { font-size: 0.9rem; margin-top: 12px; max-width: 280px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--terracotta-light); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px; gap: 16px; flex-wrap: wrap; font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--terracotta-light); }

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--sand); flex-direction: column;
        padding: 32px 24px; gap: 20px;
        transform: translateY(-120%); transition: transform 0.35s ease;
        box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    }
    .nav.open { transform: translateY(0); }
    .nav a { font-size: 1.1rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-float { right: 16px; bottom: -24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }
    .menu-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-img-main img { height: 320px; }
    .about-img-float img { height: 180px; }
    .about-stats { gap: 24px; }
    .footer-top { flex-direction: column; }
    .footer-links { flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }
}
