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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50: #fefdf8;
    --cream-100: #fef9ec;
    --cream-200: #fef3c7;
    --cream-300: #fde68a;
    --ink-900: #1a1a1a;
    --ink-700: #2d2d2d;
    --ink-500: #555555;
    --ink-400: #777777;
    --ink-300: #999999;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--sans);
    color: var(--ink-900);
    background: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== TYPOGRAPHY ========== */
.section-label {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink-900);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--emerald-800);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.5s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(6, 78, 59, 0.08);
}

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

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

.logo-mark {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cream-50);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(254, 249, 236, 0.5);
    border-radius: 50%;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled .logo-mark {
    color: var(--emerald-900);
    border-color: var(--emerald-900);
}

.logo-text {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream-50);
    transition: color 0.4s var(--ease-out);
}

.navbar.scrolled .logo-text {
    color: var(--ink-900);
}

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

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(254, 253, 248, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--cream-200);
    transition: width 0.3s var(--ease-out);
}

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

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

.navbar.scrolled .nav-menu a {
    color: var(--ink-500);
}

.navbar.scrolled .nav-menu a::after {
    background: var(--emerald-700);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--ink-900);
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid rgba(254, 253, 248, 0.5);
    border-radius: 100px;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--cream-50);
    color: var(--emerald-900) !important;
    border-color: var(--cream-50);
}

.navbar.scrolled .nav-cta {
    border-color: var(--emerald-900);
    color: var(--emerald-900) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--emerald-900);
    color: var(--cream-50) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--cream-50);
    z-index: 1001;
}

.navbar.scrolled .nav-toggle {
    color: var(--ink-900);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--emerald-900);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out);
}

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

.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.nav-overlay-link {
    font-family: var(--serif);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--cream-100);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
}

.nav-overlay.active .nav-overlay-link {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay-link:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay-link:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.active .nav-overlay-link:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay-link:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.active .nav-overlay-link:nth-child(5) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay-link:nth-child(6) { transition-delay: 0.35s; }

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

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero.loaded .hero-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 78, 59, 0.45) 0%,
        rgba(6, 78, 59, 0.35) 40%,
        rgba(6, 78, 59, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-200);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--cream-50);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(254, 249, 236, 0.85);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.btn-primary {
    background: var(--cream-50);
    color: var(--emerald-900);
}

.btn-primary:hover {
    background: var(--cream-200);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--cream-50);
    border: 1.5px solid rgba(254, 249, 236, 0.6);
}

.btn-outline:hover {
    background: rgba(254, 249, 236, 0.1);
    border-color: var(--cream-50);
    transform: translateY(-2px);
}

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

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(254, 249, 236, 0.6);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ========== MARQUEE ========== */
.marquee {
    background: var(--emerald-900);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream-200);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--emerald-600);
    font-size: 0.5rem;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== ABOUT ========== */
.about {
    padding: 8rem 0;
    background: var(--cream-50);
}

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

.about-image {
    position: relative;
}

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

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--emerald-700);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1.05rem;
    color: var(--ink-500);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(6, 78, 59, 0.12);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald-800);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--ink-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(6, 78, 59, 0.15);
}

/* ========== MENU ========== */
.menu {
    padding: 8rem 0;
    background: var(--cream-100);
}

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

.menu-intro {
    font-size: 1.1rem;
    color: var(--ink-500);
    line-height: 1.7;
}

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

.menu-card {
    background: var(--cream-50);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.1);
}

.menu-card-image {
    overflow: hidden;
    height: 260px;
}

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

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

.menu-card-body {
    padding: 2rem;
}

.menu-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 0.5rem;
}

.menu-card-title {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 0.75rem;
}

.menu-card-desc {
    font-size: 0.95rem;
    color: var(--ink-500);
    line-height: 1.7;
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    padding: 1.25rem 2rem;
    background: rgba(6, 78, 59, 0.06);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--ink-500);
}

.menu-note svg {
    color: var(--emerald-700);
    flex-shrink: 0;
}

/* ========== EXPERIENCE ========== */
.experience {
    padding: 8rem 0;
    background: var(--cream-50);
}

.experience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-content {
    order: 1;
}

.experience-text {
    font-size: 1.05rem;
    color: var(--ink-500);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.experience-images {
    order: 2;
    position: relative;
    height: 600px;
}

.exp-img {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
}

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

.exp-img-1 {
    width: 280px;
    height: 380px;
    top: 0;
    right: 0;
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.15);
}

.exp-img-2 {
    width: 300px;
    height: 260px;
    bottom: 0;
    left: 20px;
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.15);
}

/* ========== LOCATION ========== */
.location {
    padding: 8rem 0;
    background: var(--emerald-900);
    color: var(--cream-50);
}

.location .section-label {
    color: var(--cream-300);
}

.location .section-title {
    color: var(--cream-50);
}

.location .section-title em {
    color: var(--cream-200);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-item svg {
    color: var(--cream-200);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.location-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-400);
}

.location-item a,
.location-item span {
    font-size: 1.05rem;
    color: var(--cream-100);
    transition: color 0.3s ease;
}

.location-item a:hover {
    color: var(--cream-200);
}

.btn-location {
    margin-top: 1rem;
}

.location-map {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 400px;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6) contrast(1.05);
}

.location-map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cream-50);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ========== CONTACT ========== */
.contact {
    padding: 8rem 0;
    background: var(--cream-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--ink-500);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--ink-700);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(6, 78, 59, 0.1);
}

.contact-quick-link:hover {
    color: var(--emerald-700);
    padding-left: 0.5rem;
}

.contact-quick-link svg {
    color: var(--emerald-700);
}

/* Form */
.contact-form-wrapper {
    background: var(--cream-50);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 40px rgba(6, 78, 59, 0.06);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-700);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--ink-900);
    background: var(--cream-100);
    border: 1.5px solid transparent;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--emerald-700);
    background: var(--cream-50);
}

.form-input::placeholder {
    color: var(--ink-300);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(6, 78, 59, 0.08);
    border-radius: 4px;
    color: var(--emerald-800);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--emerald-700);
    flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--ink-900);
    color: var(--cream-100);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(254, 249, 236, 0.08);
}

.logo-mark-lg {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--cream-200);
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(254, 249, 236, 0.2);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.logo-text-lg {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream-50);
    display: block;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--ink-400);
    line-height: 1.7;
    max-width: 280px;
}

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

.footer-nav a {
    font-size: 0.95rem;
    color: var(--ink-400);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--cream-200);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--ink-400);
}

.footer-contact a {
    color: var(--ink-400);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--cream-200);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--ink-500);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid,
    .experience-split,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-content { order: 1; }
    .experience-images { order: 2; height: 450px; }

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

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

    .nav-toggle {
        display: block;
    }

    .hero-headline {
        font-size: clamp(2.75rem, 12vw, 4.5rem);
    }

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

    .experience-images {
        height: 400px;
    }

    .exp-img-1 {
        width: 200px;
        height: 280px;
    }

    .exp-img-2 {
        width: 220px;
        height: 200px;
        left: 10px;
    }

    .location-map {
        height: 300px;
    }

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

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 48px;
        height: 1px;
    }

    .experience-images {
        height: 320px;
    }

    .exp-img-1 {
        width: 160px;
        height: 220px;
    }

    .exp-img-2 {
        width: 180px;
        height: 160px;
        left: 5px;
    }
}
