/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: #1e293b;
    background-color: #fafaf9;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 3px;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 249, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    border-bottom-color: #e2e8f0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid #0d9488;
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #0d9488;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: #475569;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0d9488;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #0d9488;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid #0d9488;
    border-radius: 100px;
    color: #0d9488;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: #0d9488;
    color: #fafaf9;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: #f1f5f9;
}

.nav-toggle-icon {
    width: 20px;
    height: 20px;
    color: #1e293b;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 72px 2rem 4rem;
    background: #fafaf9;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0d9488;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: #0d9488;
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #475569;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 100px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #0d9488;
    color: #fafaf9;
    border: 1.5px solid #0d9488;
}

.btn--primary:hover {
    background: #0f766e;
    border-color: #0f766e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.btn--ghost {
    background: transparent;
    color: #1e293b;
    border: 1.5px solid #cbd5e1;
}

.btn--ghost:hover {
    border-color: #1e293b;
    transform: translateY(-1px);
}

.btn--full {
    width: 100%;
}

/* Hero image */
.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 7/9;
}

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

.hero-img-wrapper:hover img {
    transform: scale(1.02);
}

.hero-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1.5px solid #99f6e4;
    border-radius: 16px;
    z-index: -1;
}

/* ===== Dividers ===== */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.divider-dot {
    width: 8px;
    height: 8px;
    color: #0d9488;
    flex-shrink: 0;
}

/* ===== Section shared ===== */
.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0d9488;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: #1e293b;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: #0d9488;
}

/* ===== About ===== */
.about {
    padding: 6rem 2rem;
    background: #fafaf9;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.25rem;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.about-img-item {
    border-radius: 12px;
    overflow: hidden;
}

.about-img-item--tall {
    grid-row: span 2;
    aspect-ratio: 4/5;
}

.about-img-item--wide {
    aspect-ratio: 16/10;
}

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

.about-img-item:hover img {
    transform: scale(1.03);
}

/* ===== Menu ===== */
.menu {
    padding: 6rem 2rem;
    background: #f1f5f9;
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.menu-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #475569;
}

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

.menu-card {
    background: #fafaf9;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
    border-color: #99f6e4;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #99f6e4;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #0d9488;
}

.menu-card-icon svg {
    width: 24px;
    height: 24px;
}

.menu-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.menu-item-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1e293b;
}

.menu-item-desc {
    font-size: 0.8125rem;
    color: #64748b;
    text-align: right;
    flex-shrink: 0;
}

.menu-note {
    font-size: 0.8125rem;
    color: #94a3b8;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

/* ===== Gallery ===== */
.gallery {
    padding: 6rem 2rem;
    background: #fafaf9;
}

.gallery-container {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 3rem;
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

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

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

/* ===== Visit ===== */
.visit {
    padding: 6rem 2rem;
    background: #f1f5f9;
}

.visit-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-content {
    max-width: 520px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.visit-detail {
    display: flex;
    gap: 1.25rem;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    flex-shrink: 0;
    color: #0d9488;
}

.visit-detail-icon svg {
    width: 20px;
    height: 20px;
}

.visit-detail-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.375rem;
}

.visit-detail-value {
    font-size: 1rem;
    line-height: 1.7;
    color: #1e293b;
}

.visit-detail-value a {
    color: #0d9488;
    transition: color 0.2s ease;
}

.visit-detail-value a:hover {
    color: #0f766e;
    text-decoration: underline;
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid #e2e8f0;
}

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

/* ===== Contact ===== */
.contact {
    padding: 6rem 2rem;
    background: #fafaf9;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-content {
    max-width: 560px;
}

.contact-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #1e293b;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-input:focus {
    border-color: #0d9488;
    background: #fafaf9;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 10px;
    margin-top: 0.5rem;
}

.contact-success svg {
    width: 20px;
    height: 20px;
    color: #0d9488;
    flex-shrink: 0;
}

.contact-success p {
    font-size: 0.9375rem;
    color: #134e4a;
}

.contact-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

/* ===== Footer ===== */
.footer {
    background: #1e293b;
    color: #f1f5f9;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #334155;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid #5eead4;
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #5eead4;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #f8fafc;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 200px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-link {
    font-size: 0.875rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #5eead4;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.footer-hours-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 0.5rem;
}

.footer-hours p {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8125rem;
    color: #64748b;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
}

.footer-contact a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #5eead4;
}

.footer-separator {
    color: #334155;
}

/* ===== Scroll reveal (progressive enhancement) ===== */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container,
    .about-container,
    .visit-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
    }

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

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

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

    .about-content,
    .visit-content,
    .contact-content {
        max-width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 249, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 2rem 2rem;
        gap: 0.5rem;
        border-bottom: 1px solid #e2e8f0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    .nav-link--cta {
        text-align: center;
        margin-top: 0.5rem;
    }

    .hero {
        padding: 100px 1.5rem 3rem;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

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

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .about-img-grid {
        grid-template-columns: 1fr;
    }

    .about-img-item--tall {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .visit-map {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1.25rem;
    }

    .hero, .about, .menu, .gallery, .visit, .contact {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .menu-card {
        padding: 1.75rem;
    }
}
