/* --- CSS Variables & Reset --- */
:root {
    --color-charcoal: #2A2C2F;
    --color-charcoal-light: #3F4144;
    --color-coral: #E76F51;
    --color-coral-light: #F4A261;
    --color-cream: #F8F5F2;
    --color-white: #FFFFFF;
    --color-text: #4A4A4A;
    --color-text-light: #7A7A7A;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-soft: 0 10px 40px -10px rgba(42, 44, 47, 0.08);
    --shadow-hover: 0 20px 50px -10px rgba(42, 44, 47, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-charcoal);
}

h1 { font-size: clamp(3rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

.eyebrow {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-coral);
    margin-bottom: 1rem;
}

.text-coral { color: var(--color-coral); }

.accent-italic {
    font-style: italic;
    font-weight: 400;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

.btn-outline:hover {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-text {
    color: var(--color-coral);
    font-weight: 600;
    padding: 0;
    border: none;
}

.btn-text:hover {
    text-decoration: underline;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(248, 245, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 44, 47, 0.05);
    padding: 20px 0;
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.logo .dot { color: var(--color-coral); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--color-coral);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-charcoal);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }

/* --- Hero Section --- */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, #fff 100%);
}

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

.hero-content {
    padding-right: 20px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-visual {
    position: relative;
    height: 600px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 90%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

.img-accent {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 55%;
    height: 45%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 4px solid var(--color-cream);
}

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

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 24px;
}

.section-header {
    margin-bottom: 60px;
}

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

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.about-content p {
    color: var(--color-text);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.feature-list {
    margin-top: 32px;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-weight: 500;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--color-coral);
    border-radius: 50%;
}

/* --- Menu --- */
.menu-section {
    background-color: var(--color-white);
}

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

.menu-card {
    background-color: var(--color-cream);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.menu-card.highlight {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

.menu-card h3 {
    margin: 16px 0 12px;
    color: var(--color-charcoal);
}

.menu-card.highlight h3 {
    color: var(--color-white);
}

.menu-card p {
    color: var(--color-text);
    font-size: 0.95rem;
}

.menu-card.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

.card-icon {
    width: 48px;
    height: 48px;
    color: var(--color-coral);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* --- Atmosphere --- */
.atmosphere-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.atm-text p {
    color: var(--color-text);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.atm-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.atm-img {
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

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

/* --- Visit --- */
.visit {
    padding: 80px 0;
}

.visit-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.visit-info {
    padding: 60px;
}

.visit-info h2 {
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-coral);
    margin-bottom: 8px;
}

.info-block p {
    color: var(--color-charcoal);
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-block a {
    color: var(--color-charcoal);
    border-bottom: 1px solid rgba(42, 44, 47, 0.2);
    transition: var(--transition);
}

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

.visit-map {
    min-height: 400px;
    background-color: #e0e0e0;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    color: var(--color-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .hero-grid,
    .about-grid,
    .atmosphere-layout,
    .visit-card {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-visual {
        order: -1;
        height: 400px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-info {
        padding: 40px;
    }
    
    .visit-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
