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

:root {
    --charcoal-900: #1a1f2e;
    --charcoal-800: #2D3748;
    --charcoal-700: #374151;
    --charcoal-600: #4b5563;
    --charcoal-500: #6b7280;
    --charcoal-400: #9ca3af;
    --charcoal-100: #f3f4f6;
    --charcoal-50: #f9fafb;
    --coral-600: #E8553A;
    --coral-500: #FF6B4A;
    --coral-400: #FF8A70;
    --coral-100: #FFF0EC;
    --coral-50: #FFF7F5;
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── HEADER ─── */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(45, 55, 72, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--charcoal-900);
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--coral-500);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

#main-nav {
    display: flex;
    align-items: center;
}

#nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

#nav-list a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-600);
    transition: color var(--transition);
    position: relative;
}

#nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-500);
    transition: width var(--transition);
}

#nav-list a:hover {
    color: var(--charcoal-900);
}

#nav-list a:hover::after {
    width: 100%;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-coral {
    background: var(--coral-500);
    color: var(--white);
    border-color: var(--coral-500);
}

.btn-coral:hover {
    background: var(--coral-600);
    border-color: var(--coral-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal-800);
    border-color: var(--charcoal-800);
}

.btn-outline:hover {
    background: var(--charcoal-800);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* ─── MOBILE MENU TOGGLE ─── */
#menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

#menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal-800);
    transition: all var(--transition);
    transform-origin: center;
}

#menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

#menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */
#hero {
    padding-top: 72px;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--coral-50);
    border: 1px solid var(--coral-100);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--coral-600);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--coral-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--coral-500);
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--charcoal-600);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal-900);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--charcoal-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--charcoal-100);
}

/* Hero images */
.hero-image {
    position: relative;
    height: 680px;
}

.hero-img-main {
    width: 85%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(45, 55, 72, 0.15);
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-accent {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(45, 55, 72, 0.18);
    border: 4px solid var(--white);
}

.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-float {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 48%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(45, 55, 72, 0.12);
    border: 4px solid var(--white);
}

.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── SECTION COMMON ─── */
section {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral-500);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--coral-500);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

.section-sub {
    font-size: 1.05rem;
    color: var(--charcoal-500);
    max-width: 560px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* ─── ABOUT ─── */
#about {
    background: var(--charcoal-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal-600);
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

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

.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--coral-50);
    border: 1px solid var(--coral-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
}

.value-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal-900);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.88rem;
    color: var(--charcoal-500);
    line-height: 1.5;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(45, 55, 72, 0.12);
    height: 640px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── MENU ─── */
#menu {
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--white);
    border: 1px solid var(--charcoal-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(45, 55, 72, 0.1);
    border-color: transparent;
}

.menu-card-img {
    height: 200px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 24px;
}

.menu-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral-500);
    margin-bottom: 8px;
}

.menu-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 10px;
}

.menu-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--charcoal-500);
}

.menu-card-cta {
    background: var(--charcoal-900);
    border-color: var(--charcoal-900);
}

.menu-card-cta:hover {
    box-shadow: 0 16px 48px rgba(45, 55, 72, 0.25);
}

.menu-card-cta .menu-card-label {
    color: var(--coral-400);
}

.menu-card-cta h3 {
    color: var(--white);
    font-size: 1.3rem;
}

.menu-card-cta p {
    color: var(--charcoal-400);
    margin-bottom: 20px;
}

.menu-card-cta .btn-coral {
    margin-top: 8px;
}

/* ─── GALLERY ─── */
#gallery {
    background: var(--charcoal-900);
    padding: 100px 0;
}

#gallery .section-label {
    color: var(--coral-400);
}

#gallery .section-label::before {
    background: var(--coral-400);
}

#gallery .section-title {
    color: var(--white);
}

#gallery .section-sub {
    color: var(--charcoal-400);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 5/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ─── VISIT ─── */
#visit {
    background: var(--white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal-600);
    margin-bottom: 36px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--coral-50);
    border: 1px solid var(--coral-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--charcoal-900);
    margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
    font-size: 0.9rem;
    color: var(--charcoal-600);
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--coral-500);
}

.hours-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--charcoal-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--charcoal-100);
}

.hours-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--coral-50);
    border: 1px solid var(--coral-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
}

.hours-box strong {
    display: block;
    font-size: 0.85rem;
    color: var(--charcoal-900);
    margin-bottom: 6px;
}

.hours-box span {
    display: block;
    font-size: 0.88rem;
    color: var(--charcoal-600);
    line-height: 1.6;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(45, 55, 72, 0.1);
    height: 480px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* ─── FOOTER ─── */
#main-footer {
    background: var(--charcoal-900);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--charcoal-400);
    max-width: 300px;
}

.footer-links strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal-400);
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-links span {
    font-size: 0.9rem;
    color: var(--charcoal-500);
    transition: color var(--transition);
    line-height: 1.5;
}

.footer-links a:hover {
    color: var(--coral-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--charcoal-500);
}

/* ─── SCROLL REVEAL (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .hero-image {
        height: 520px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 72px 0;
    }

    /* Mobile nav */
    #menu-toggle {
        display: flex;
    }

    #nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 20px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        transition: right var(--transition);
        z-index: 999;
    }

    #nav-list.open {
        right: 0;
    }

    #nav-list a {
        font-size: 1rem;
    }

    #nav-list .btn {
        margin-top: 8px;
    }

    /* Hero mobile */
    #hero {
        padding-top: 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0 60px;
    }

    .hero-image {
        height: 400px;
        order: -1;
    }

    .hero-img-main {
        width: 100%;
        height: 100%;
    }

    .hero-img-accent,
    .hero-img-float {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 400px;
        order: -1;
    }

    /* Menu mobile */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Visit mobile */
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit-map {
        height: 320px;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }
}
