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

:root {
    --charcoal: #2a2a2a;
    --charcoal-light: #3d3d3d;
    --coral: #e8735a;
    --coral-light: #f09080;
    --coral-dark: #d4604a;
    --cream: #faf8f6;
    --cream-dark: #f3efeb;
    --white: #ffffff;
    --text: #2a2a2a;
    --text-light: #6b6b6b;
    --text-muted: #999999;
    --line: rgba(42, 42, 42, 0.1);
    --line-strong: rgba(42, 42, 42, 0.2);
    
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    --radius: 4px;
    --transition: 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

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

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(250, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 var(--line);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    border: 1.5px solid currentColor;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition), border-color var(--transition);
}

.site-header.scrolled .logo-mark {
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.01em;
    transition: color var(--transition);
}

.site-header.scrolled .logo-text {
    color: var(--charcoal);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.main-nav a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral);
    transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--white);
}

.site-header.scrolled .main-nav a {
    color: var(--text-light);
}

.site-header.scrolled .main-nav a:hover {
    color: var(--charcoal);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--white);
    z-index: 1001;
    transition: color var(--transition);
}

.site-header.scrolled .menu-toggle {
    color: var(--charcoal);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(42, 42, 42, 0.45) 0%,
        rgba(42, 42, 42, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 var(--space-md);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: var(--space-sm);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.hero-sub {
    font-size: 1.0625rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
}

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

.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Section shared ─── */
.section-eyebrow {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

/* ─── About ─── */
.about {
    padding: var(--space-2xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
}

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

.about-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.about-details {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--line);
}

.detail-item {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--charcoal);
}

.detail-divider {
    width: 1px;
    background: var(--line);
    align-self: stretch;
}

/* ─── Menu ─── */
.menu {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.menu-category {
    padding: var(--space-md);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.menu-category:hover {
    border-color: var(--coral);
    box-shadow: 0 8px 32px rgba(232, 115, 90, 0.08);
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--line);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-sm);
}

.item-name {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--charcoal);
}

.item-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 300;
}

.menu-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
    font-style: italic;
}

/* ─── Gallery ─── */
.gallery {
    padding: var(--space-xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img {
    height: 400px;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img {
    height: 280px;
}

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

/* ─── Gifts ─── */
.gifts {
    padding: var(--space-2xl) 0;
    background: var(--charcoal);
    color: var(--white);
}

.gifts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.gifts .section-eyebrow {
    color: var(--coral-light);
}

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

.gifts-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.gifts-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.gifts-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.gifts-features svg {
    color: var(--coral);
    flex-shrink: 0;
}

.gifts-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.gifts-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

/* ─── Visit ─── */
.visit {
    padding: var(--space-2xl) 0;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.info-block {
    margin-bottom: var(--space-md);
}

.info-block-title {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.info-block p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.info-block a {
    color: var(--coral);
    transition: color var(--transition);
}

.info-block a:hover {
    color: var(--coral-dark);
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    font-size: 0.9375rem;
}

.hours-list .day {
    color: var(--text-light);
}

.hours-list .time {
    color: var(--charcoal);
    font-weight: 400;
}

.visit-map {
    border-radius: var(--radius);
    overflow: hidden;
    height: 480px;
    border: 1px solid var(--line);
}

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

/* ─── Footer ─── */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand .logo-mark {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-brand .logo-text {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .about-grid,
    .gifts-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .about-image img,
    .gifts-image img {
        height: 400px;
    }
    
    .menu-categories {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(250, 248, 246, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
    }
    
    .main-nav.open {
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .main-nav a {
        font-size: 1rem;
        color: var(--charcoal);
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item:nth-child(1) img,
    .gallery-item:nth-child(4) img {
        height: 250px;
    }
    
    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img {
        height: 200px;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .visit-map {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px !important;
    }
    
    .about-details {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .detail-divider {
        width: auto;
        height: 1px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 260px;
    }
}
