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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --teal-950: #042f2e;
    
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    
    --warm-50: #fffbeb;
    --warm-100: #fef3c7;
    
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--slate-800);
    background: var(--slate-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ── Typography ── */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--slate-900);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--slate-50);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--slate-500);
    max-width: 520px;
    line-height: 1.8;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 6px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-600);
    color: var(--slate-50);
    border-color: var(--teal-600);
}

.btn--primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--slate-50);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn--ghost-light {
    background: transparent;
    color: var(--slate-700);
    border-color: var(--slate-300);
}

.btn--ghost-light:hover {
    background: var(--slate-100);
    border-color: var(--slate-400);
}

.btn--outline-light {
    background: transparent;
    color: var(--teal-200);
    border-color: var(--teal-500);
}

.btn--outline-light:hover {
    background: var(--teal-600);
    border-color: var(--teal-600);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 0.9375rem;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: all var(--transition);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--slate-200);
}

.nav.scrolled .nav__logo-text {
    color: var(--slate-800);
}

.nav.scrolled .nav__logo-icon {
    color: var(--teal-600);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo-icon {
    color: var(--slate-50);
    transition: color var(--transition);
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--slate-50);
    transition: color var(--transition);
}

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal-400);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--slate-50);
}

.nav__link:hover::after {
    width: 100%;
}

.nav.scrolled .nav__link {
    color: var(--slate-500);
}

.nav.scrolled .nav__link:hover {
    color: var(--slate-800);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--teal-200);
    padding: 8px 16px;
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 6px;
    transition: all var(--transition);
}

.nav__cta:hover {
    background: rgba(45, 212, 191, 0.1);
    border-color: rgba(45, 212, 191, 0.6);
}

.nav.scrolled .nav__cta {
    color: var(--teal-700);
    border-color: var(--teal-200);
}

.nav.scrolled .nav__cta:hover {
    background: var(--teal-50);
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--slate-50);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--teal-950) 0%,
        var(--teal-800) 25%,
        var(--slate-800) 55%,
        var(--slate-900) 80%,
        var(--slate-950) 100%
    );
    z-index: 1;
}

.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4, 47, 46, 0.3) 0%,
        rgba(2, 6, 23, 0.6) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-300);
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--slate-50);
    margin-bottom: 24px;
}

.hero__title-accent {
    font-style: italic;
    color: var(--teal-300);
}

.hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 40px;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.4);
    animation: float 2.5s ease-in-out infinite;
}

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

/* ── Features ── */
.features {
    padding: 100px 0;
    background: var(--slate-50);
}

.features__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: start;
}

.feature {
    text-align: center;
    padding: 0 32px;
}

.feature__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-50);
    color: var(--teal-700);
    border: 1px solid var(--teal-100);
}

.feature__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.feature__body {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.feature-divider {
    width: 1px;
    background: var(--slate-200);
    align-self: stretch;
    margin: 20px 0;
}

/* ── Menu ── */
.menu {
    padding: 100px 0;
    background: var(--slate-50);
}

.menu .container {
    max-width: 1100px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.menu-category {
    background: var(--slate-50);
}

.menu-category__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.menu-category__title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--slate-800);
    white-space: nowrap;
}

.menu-category__line {
    flex: 1;
    height: 1px;
    background: var(--slate-200);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--slate-100);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item__name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-800);
}

.menu-item__desc {
    font-size: 0.8125rem;
    color: var(--slate-400);
    text-align: right;
    white-space: nowrap;
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    font-size: 0.8125rem;
    color: var(--slate-400);
    text-align: center;
}

/* ── About ── */
.about {
    padding: 100px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.about__img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 55%;
    border-radius: 10px;
    overflow: hidden;
    border: 4px solid var(--slate-900);
    aspect-ratio: 4/5;
}

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

.about__img-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background: var(--teal-600);
    border-radius: 50%;
    opacity: 0.15;
}

.about__content {
    position: relative;
    z-index: 1;
}

.about__body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--teal-400);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* ── Gallery ── */
.gallery {
    padding: 100px 0;
    background: var(--slate-50);
}

.gallery .container {
    max-width: 1200px;
}

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

.gallery__item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 16/10;
}

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

.gallery__item:hover img {
    transform: scale(1.04);
}

/* ── Visit ── */
.visit {
    padding: 100px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.visit::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.visit__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.visit__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(45, 212, 191, 0.08);
    color: var(--teal-400);
    border: 1px solid rgba(45, 212, 191, 0.15);
}

.visit__detail-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 4px;
}

.visit__detail-value {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.visit__detail-value a {
    color: var(--teal-400);
    transition: color var(--transition);
}

.visit__detail-value a:hover {
    color: var(--teal-300);
}

.visit__map {
    border-radius: 12px;
    overflow: hidden;
    background: var(--slate-800);
    min-height: 400px;
}

.visit__map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    padding: 40px;
    gap: 16px;
}

.visit__map-icon {
    color: var(--teal-500);
    opacity: 0.5;
}

.visit__map-text {
    font-size: 0.9375rem;
    color: var(--slate-300);
}

/* ── CTA ── */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--teal-800) 0%,
        var(--teal-700) 40%,
        var(--slate-700) 100%
    );
}

.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta__eyebrow {
    color: var(--teal-300);
}

.cta__title {
    color: var(--slate-50);
    margin-bottom: 16px;
}

.cta__subtitle {
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin: 0 auto 40px;
}

.cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
    background: var(--slate-950);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--slate-50);
    margin-bottom: 16px;
}

.footer__logo svg {
    color: var(--teal-500);
}

.footer__tagline {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.footer__heading {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 16px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--slate-500);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--teal-400);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contact p {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.footer__contact a {
    color: var(--teal-400);
    transition: color var(--transition);
}

.footer__contact a:hover {
    color: var(--teal-300);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--slate-600);
}

/* ── Mobile Menu ── */
.nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--slate-900);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
}

.nav__menu.open {
    transform: translateX(0);
}

.nav__menu .nav__link {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

.nav__menu .nav__link:hover {
    color: var(--slate-50);
}

.nav__menu .nav__cta {
    font-size: 0.9375rem;
}

.nav__toggle {
    display: block;
}

.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.nav__overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .features__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .feature-divider {
        width: 48px;
        height: 1px;
        margin: 0 auto;
    }
    
    .feature {
        padding: 0;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__images {
        max-width: 480px;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__item--wide {
        grid-column: span 2;
    }
    
    .visit__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .nav__inner {
        height: 64px;
    }
    
    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features {
        padding: 72px 0;
    }
    
    .menu {
        padding: 72px 0;
    }
    
    .about {
        padding: 72px 0;
    }
    
    .gallery {
        padding: 72px 0;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--wide {
        grid-column: span 1;
        aspect-ratio: 16/10;
    }
    
    .visit {
        padding: 72px 0;
    }
    
    .cta {
        padding: 72px 0;
    }
    
    .cta__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about__img-secondary {
        right: -12px;
        bottom: -20px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ── 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);
    }
    
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
}
