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

:root {
    --bg-primary: #0e0e10;
    --bg-secondary: #161618;
    --bg-tertiary: #1c1c1f;
    --bg-card: #1a1a1d;
    --text-primary: #f5f0eb;
    --text-secondary: #b8b0a8;
    --text-muted: #7a726a;
    --accent: #c88a5e;
    --accent-light: #dba87a;
    --accent-dark: #a06840;
    --coral: #e07a5f;
    --coral-light: #e8956f;
    --coral-dark: #c4624a;
    --gold: #c88a5e;
    --border: rgba(200, 138, 94, 0.12);
    --border-light: rgba(245, 240, 235, 0.06);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(14, 14, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 101;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
    transition: all 0.4s var(--ease-out);
}

.logo:hover .logo-mark {
    background: var(--accent);
    color: var(--bg-primary);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(200, 138, 94, 0.08);
}

.nav-cta {
    margin-left: 8px;
    padding: 8px 20px;
    background: rgba(200, 138, 94, 0.12);
    color: var(--accent);
    border: 1px solid rgba(200, 138, 94, 0.2);
    font-weight: 500;
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.menu-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 138, 94, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(200, 138, 94, 0.06);
}

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

/* Section shared */
.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.accent {
    color: var(--accent);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

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

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(14, 14, 16, 0.97) 0%,
        rgba(14, 14, 16, 0.88) 40%,
        rgba(14, 14, 16, 0.6) 70%,
        rgba(14, 14, 16, 0.4) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(200,138,94,0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 24px;
    max-width: 560px;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 440px;
    margin-bottom: 40px;
}

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

.hero-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-bottom: 24px;
}

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

.hero-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-right {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 640/820;
    box-shadow: var(--shadow-lg);
}

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

.hero-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 1.5px solid var(--accent);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.4;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* About */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

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

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.about-image-col {
    position: relative;
    height: 700px;
}

.about-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 75%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-image-float {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--bg-secondary);
}

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

/* Menu */
.menu {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.menu-lead {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 56px;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--coral));
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.menu-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(200, 138, 94, 0.1);
    border: 1px solid rgba(200, 138, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.menu-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.menu-cta {
    text-align: center;
}

/* Experience */
.experience {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

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

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

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(14, 14, 16, 0.85) 0%,
        rgba(14, 14, 16, 0.92) 50%,
        rgba(14, 14, 16, 0.95) 100%
    );
}

.experience-inner {
    position: relative;
    z-index: 1;
}

.experience-eyebrow {
    text-align: center;
}

.experience-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

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

.exp-item {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    transition: all 0.5s var(--ease-out);
}

.exp-item:hover {
    background: rgba(200, 138, 94, 0.04);
    border-color: var(--border);
    transform: translateY(-4px);
}

.exp-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

.exp-label {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.exp-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Visit */
.visit {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.visit-inner {
    max-width: 1000px;
}

.visit > .container > .section-eyebrow,
.visit > .container > .section-title {
    text-align: center;
    margin-bottom: 16px;
}

.visit > .container > .section-title {
    margin-bottom: 56px;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.visit-block {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
}

.visit-block:first-child {
    padding-top: 0;
}

.visit-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.visit-block-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.visit-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
}

.visit-block a {
    color: var(--text-primary);
    transition: color 0.3s;
}

.visit-block a:hover {
    color: var(--accent);
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left {
    max-width: 440px;
}

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-out);
    padding: 16px 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-phone:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(200, 138, 94, 0.06);
}

.contact-right {
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-out);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(200, 138, 94, 0.04);
    box-shadow: 0 0 0 3px rgba(200, 138, 94, 0.08);
}

.form-group 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='%237a726a' 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 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

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

.form-success {
    text-align: center;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.form-success svg {
    opacity: 0.9;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-success p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 56px 0 32px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-col p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-col a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14, 14, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay .nav-list {
    flex-direction: column;
    gap: 8px;
}

.nav-overlay .nav-link {
    font-size: 24px;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 16px 32px;
}

.nav-overlay .nav-cta {
    margin-left: 0;
    font-size: 18px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 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) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        max-width: 480px;
    }

    .hero-image-wrap {
        aspect-ratio: 4/5;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-image-col {
        height: 500px;
        max-width: 480px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .contact-left {
        max-width: 100%;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .nav-overlay {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-headline {
        max-width: 100%;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-divider {
        margin: 0 auto 24px;
    }

    .hero-details {
        align-items: center;
    }

    .hero-right {
        order: -1;
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-image-wrap {
        aspect-ratio: 3/4;
    }

    .about, .menu, .experience, .visit, .contact {
        padding: 80px 0;
    }

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

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

    .visit-map {
        min-height: 280px;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .about-image-col {
        height: 400px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .hero {
        padding: 90px 0 60px;
    }

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

    .btn {
        padding: 12px 22px;
        font-size: 13px;
    }

    .menu-card {
        padding: 28px 24px;
    }
}
