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

:root {
    --plum-950: #0d0514;
    --plum-900: #1a0a2e;
    --plum-800: #2d1250;
    --plum-700: #3d1a6e;
    --plum-600: #5a2d9a;
    --plum-500: #7c4dff;
    --amber-400: #f5c542;
    --amber-300: #fcd560;
    --amber-500: #c9a84c;
    --amber-600: #b8943f;
    --gold-gradient: linear-gradient(135deg, #f5c542 0%, #c9a84c 50%, #b8943f 100%);
    --plum-gradient: linear-gradient(180deg, #1a0a2e 0%, #0d0514 100%);
    --text-primary: #f5f0ff;
    --text-secondary: #c4b5d9;
    --text-muted: #8b7aa8;
    --card-bg: rgba(45, 18, 80, 0.5);
    --card-border: rgba(201, 168, 76, 0.15);
    --nav-height: 80px;
    --section-padding: 100px 0;
    --container-max: 1200px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--plum-950);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 5, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    z-index: 1001;
}

.nav-logo-text {
    letter-spacing: 0.02em;
}

.nav-logo-icon svg {
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
}

.gold-text {
    color: var(--amber-500);
}

.gold-link {
    color: var(--amber-500);
    transition: color 0.3s ease;
}

.gold-link:hover {
    color: var(--amber-400);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    letter-spacing: 0.03em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gold-gradient);
    color: var(--plum-950);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--plum-gradient);
    padding: calc(var(--nav-height) + 40px) 24px 60px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(90, 45, 154, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 90% 10%, rgba(124, 77, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--amber-500);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s infinite;
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20px) scale(1); }
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--amber-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.headline-line {
    display: block;
}

.headline-accent {
    color: var(--amber-500);
    font-style: italic;
}

.headline-sub {
    font-size: 0.55em;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-top: 8px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 460px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--plum-950);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(245, 240, 255, 0.25);
}

.btn-secondary:hover {
    border-color: var(--amber-500);
    color: var(--amber-500);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--card-border);
}

.btn-outline:hover {
    border-color: var(--amber-500);
    color: var(--amber-500);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 520px;
}

.hero-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--card-border);
    transition: transform 0.4s ease;
}

.hero-card:hover {
    transform: scale(1.03) !important;
}

.hero-card-main {
    width: 340px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.hero-card-float {
    width: 200px;
    height: 240px;
    z-index: 4;
}

.hero-card-1 {
    top: 10px;
    right: -10px;
    transform: rotate(6deg);
}

.hero-card-2 {
    bottom: 20px;
    left: -10px;
    transform: rotate(-4deg);
}

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

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(13, 5, 20, 0.95) 0%, transparent 100%);
}

.card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold-gradient);
    color: var(--plum-950);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.hero-card-overlay h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.hero-card-overlay p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Stat Cards */
.stat-card {
    position: absolute;
    background: rgba(45, 18, 80, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 16px 20px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-card-1 {
    top: 0;
    left: 10px;
    animation: float1 4s ease-in-out infinite;
}

.stat-card-2 {
    bottom: 60px;
    right: 0;
    animation: float2 5s ease-in-out infinite;
}

.stat-card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float3 4.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--amber-500);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--amber-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 25px; }
}

/* ===== SECTION COMMON ===== */
.section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber-500);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--amber-500);
    opacity: 0.4;
}

.section-tag::before { left: -20px; }
.section-tag::after { right: -20px; }

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== MENU SECTION ===== */
.menu-section {
    background: linear-gradient(180deg, var(--plum-950) 0%, var(--plum-900) 50%, var(--plum-950) 100%);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-cat-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
    background: var(--gold-gradient);
    color: var(--plum-950);
    border-color: transparent;
    font-weight: 700;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.menu-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 76, 0.08);
}

.menu-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.menu-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img-wrap img {
    transform: scale(1.08);
}

.menu-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    background: var(--gold-gradient);
    color: var(--plum-950);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.menu-card-badge.hot {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

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

.menu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 12px;
}

.menu-card-top h3 {
    font-size: 1.2rem;
}

.menu-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--amber-500);
    white-space: nowrap;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.menu-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--amber-500);
    font-weight: 500;
}

.tag.hot {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff9a6e;
}

.menu-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--plum-950);
    overflow: hidden;
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--card-border);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--plum-950);
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.4);
    z-index: 2;
}

.about-experience-badge .exp-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--plum-950);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-experience-badge .exp-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--plum-950);
}

.about-content .section-tag {
    display: inline-block;
    text-align: left;
}

.about-content .section-tag::before {
    display: none;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

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

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.about-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: linear-gradient(180deg, var(--plum-950) 0%, var(--plum-900) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--card-border);
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 5, 20, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--amber-500);
}

.gallery-item-large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    height: 380px;
}

.gallery-item {
    grid-column: span 4;
    height: 240px;
}

.gallery-item-wide {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    height: 260px;
}

/* ===== VISIT SECTION ===== */
.visit-section {
    background: var(--plum-950);
}

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

.visit-info .section-tag {
    display: inline-block;
    text-align: left;
}

.visit-info .section-tag::before { display: none; }

.visit-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.visit-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.visit-detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-detail h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.visit-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    min-height: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--plum-900);
    border-top: 1px solid var(--card-border);
    padding: 60px 24px 30px;
}

.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-500);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="up"] {
    transform: translateY(30px);
    opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
    [data-reveal="up"].revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 5, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.mobile-menu-overlay.open {
    display: flex;
}

.mobile-menu {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--amber-500);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        height: 420px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-card-main {
        width: 280px;
        height: 340px;
    }

    .hero-card-float {
        width: 160px;
        height: 200px;
    }

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

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-tag::before {
        display: block;
    }

    .about-text {
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    .about-feature {
        max-width: 400px;
    }

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

    .visit-info .section-tag,
    .visit-info .section-title {
        text-align: center;
    }

    .visit-info .section-tag::before {
        display: block;
    }

    .visit-description {
        text-align: center;
    }

    .visit-cta-group {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
        --section-padding: 70px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 20px);
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-visual {
        height: 360px;
    }

    .hero-card-main {
        width: 220px;
        height: 280px;
    }

    .hero-card-float {
        width: 140px;
        height: 180px;
    }

    .stat-card {
        padding: 12px 16px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

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

    .gallery-item-large {
        grid-column: 1 / -1;
        height: 260px;
    }

    .gallery-item {
        grid-column: span 6;
        height: 200px;
    }

    .gallery-item-wide {
        grid-column: 1 / -1;
        height: 200px;
    }

    .about-img-secondary {
        right: -10px;
        bottom: -20px;
    }

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

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

@media (max-width: 480px) {
    .hero-visual {
        height: 300px;
    }

    .hero-card-main {
        width: 180px;
        height: 230px;
    }

    .hero-card-float {
        width: 120px;
        height: 150px;
    }

    .stat-card {
        padding: 10px 14px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.88rem;
    }

    .btn-lg {
        padding: 16px 28px;
        width: 100%;
        justify-content: center;
    }

    .visit-cta-group {
        flex-direction: column;
    }

    .gallery-item {
        grid-column: span 12;
        height: 180px;
    }
}
