/* --- VARIABLES --- */
:root {
    /* Colors */
    --clr-cream: #F9F7F1;
    --clr-cream-dark: #F0EDE4;
    --clr-dark: #1A1A1A;
    --clr-dark-light: #2A2A2A;
    --clr-amber: #D96A2B;
    --clr-amber-light: #F28C55;
    --clr-gold: #C5A059;
    --clr-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & BASIC SETUP --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

section[id] {
    scroll-margin-top: 110px;
}

#menu {
    scroll-margin-top: 72px;
}

#contact {
    scroll-margin-top: 72px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-dark);
    background-color: var(--clr-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(3rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center { text-align: center; }
.text-light { color: var(--clr-white); }

.section-subtitle {
    display: inline-block;
    color: var(--clr-amber);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--clr-amber);
}

.divider {
    width: 50px;
    height: 2px;
    background-color: var(--clr-gold);
    margin: 1.5rem auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--clr-amber);
    color: var(--clr-white);
    border-color: var(--clr-amber);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--clr-amber);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-white);
    border-color: var(--clr-white);
}

.btn-outline:hover {
    background-color: var(--clr-white);
    color: var(--clr-dark);
}

/* --- COMPONENTS --- */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.section-entry-nav {
    transition: none;
}

.navbar.scrolled, .navbar.navbar-solid {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--clr-white);
}

.logo-text {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--clr-gold);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn,
.mobile-nav-close {
    background: transparent;
    border: 0;
    padding: 0;
}

.mobile-menu-btn {
    display: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background-color: var(--clr-dark);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    padding: 7rem 1.25rem 2rem;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav a {
    color: var(--clr-white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    padding: 0;
}

.mobile-nav a:hover {
    color: var(--clr-gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--clr-white);
    overflow: hidden;
}

/* Cinemagraph Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: kenBurns 25s ease-in-out infinite alternate;
}

.hero-bg-home {
    background-image: url('assets/images/hero_real.png');
}

@keyframes kenBurns {
    0% { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1%, -1%); }
}

/* Trust Badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
    max-width: 100%;
}

.hero .hero-trust-badge::before {
    content: '✦';
    color: var(--clr-gold);
    font-size: 0.72rem;
    line-height: 1;
    opacity: 0.95;
    transform: translateY(-1px);
}

/* Hero Entrance Animation */
@keyframes heroEntrance {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-entrance {
    opacity: 0;
    animation: heroEntrance 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.delay-badge { animation-delay: 0.2s; }
.hero-entrance.delay-1 { animation-delay: 0.5s; }
.hero-entrance.delay-2 { animation-delay: 0.7s; }
.hero-entrance.delay-3 { animation-delay: 0.9s; }
.hero-entrance.delay-4 { animation-delay: 1.1s; }

/* Hero Title Accent */
.hero-title-accent {
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-amber-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Arrow Icon */
.btn-primary .btn-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darkened overlay so text stays readable over the bright shader */
    background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0;
    position: relative;
    z-index: 2; /* sit above the overlay and shader */
}

.hero-subtitle {
    color: var(--clr-gold);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0 2.5rem;
    max-width: 600px;
}

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

/* Scroll Down Mouse */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--clr-white);
    border-radius: 20px;
    display: block;
    position: relative;
    opacity: 0.7;
    transition: var(--transition);
}

.mouse:hover {
    opacity: 1;
    border-color: var(--clr-gold);
}

.wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--clr-white);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

.mouse:hover .wheel {
    background-color: var(--clr-gold);
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text .section-title {
    margin-bottom: 1.4rem;
}

.about-content {
    margin-bottom: 2.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.about-highlight {
    font-weight: 500;
    font-style: italic;
    color: var(--clr-amber);
    margin-top: 1rem;
}

.stats {
    display: flex;
    gap: 2rem;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-amber);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    font-weight: 500;
    margin-top: 0.5rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    background-color: var(--clr-dark);
    height: 500px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--clr-gold) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.image-text h3 {
    color: var(--clr-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.image-text p {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    background-color: var(--clr-cream);
    border: 1px solid var(--clr-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.experience-badge::after {
    content: '';
    position: absolute;
    width: 125px;
    height: 125px;
    border: 1px dashed var(--clr-gold);
    border-radius: 50%;
}

.experience-badge .year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--clr-amber);
    margin-top: 5px;
    font-weight: 600;
}

.menu {
    background-color: var(--clr-dark);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.menu-card {
    background-color: var(--clr-dark-light);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.6s;
}

.menu-card:hover::before {
    left: 150%;
}

.menu-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--clr-amber);
    box-shadow: 0 15px 35px rgba(217, 106, 43, 0.2);
}

.menu-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.menu-title-row h3 {
    font-family: var(--font-heading);
    color: var(--clr-gold);
    font-size: 1.3rem;
}

.menu-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}



.menu-footer {
    margin-top: 4rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Banner */
.banner {
    background-color: var(--clr-amber);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    opacity: 0.2;
}

.banner p {
    font-size: 1.2rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact */
.contact {
    background-color: var(--clr-cream-dark);
}

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

.contact-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item-clickable {
    cursor: pointer;
}

.info-item-clickable:focus-visible {
    outline: 2px solid var(--clr-amber);
    outline-offset: 6px;
    border-radius: 10px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-amber);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item-clickable:hover .info-icon,
.info-item-clickable:focus-visible .info-icon {
    background-color: var(--clr-amber);
    color: var(--clr-white);
}

.info-text h4 {
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.info-text p {
    color: #666;
}

.info-text p a {
    color: var(--clr-amber);
    font-weight: 600;
}

.info-text p a:hover {
    color: var(--clr-amber-light);
}

.map-wrapper {
    height: 100%;
    min-height: 400px;
}

.map-wrapper.reveal-right,
.map-wrapper.reveal-right.active {
    opacity: 1;
    transform: none;
    transition: none;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #ddd;
}

.map-embed {
    border: 0;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: #111;
    color: var(--clr-white);
    padding: 5rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin: 1rem 0 2rem;
    max-width: 300px;
}

.footer-brand .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.footer-brand .logo-text {
    font-size: 2.2rem;
}

.footer-brand .logo-sub {
    font-size: 1rem;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--clr-white);
}

.social-links a:hover {
    background-color: var(--clr-amber);
}

.footer-links h4 {
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: var(--clr-white);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* --- ANIMATIONS (Reveal effects) --- */

.reveal-up {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px) scale(0.98);
    transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px) scale(0.98);
    transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0) scale(1.0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Subtle Floating Embers / Cinemagraph Animation */
.floating-ember {
    position: absolute;
    background-color: var(--clr-amber);
    border-radius: 50%;
    filter: blur(1px) drop-shadow(0 0 5px var(--clr-gold));
    animation: floatEmber 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
}

.ember-1 { left: 15%; top: 90%; animation-delay: 0.1s; width: 6px; height: 6px; }
.ember-2 { left: 25%; top: 85%; animation-delay: 1.5s; width: 4px; height: 4px; }
.ember-3 { left: 45%; top: 95%; animation-delay: 2.2s; width: 5px; height: 5px; }
.ember-4 { left: 60%; top: 80%; animation-delay: 0.8s; width: 7px; height: 7px; }
.ember-5 { left: 75%; top: 90%; animation-delay: 3.5s; width: 5px; height: 5px; }
.ember-6 { left: 85%; top: 85%; animation-delay: 1.2s; width: 8px; height: 8px; }
.ember-7 { left: 90%; top: 75%; animation-delay: 2.8s; width: 4px; height: 4px; }

@keyframes floatEmber {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    20% { opacity: 0.9; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-250px) translateX(40px) scale(0.3); opacity: 0; }
}

/* Soft Smoke Effect */
.smoke-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: radial-gradient(ellipse at bottom, rgba(200, 200, 200, 0.05) 0%, transparent 60%);
    filter: blur(20px);
    z-index: 4;
    pointer-events: none;
    animation: driftSmoke 15s ease-in-out infinite alternate;
}

.smoke-2 {
    background: radial-gradient(circle at 70% 80%, rgba(200, 200, 200, 0.04) 0%, transparent 50%);
    animation: driftSmoke 18s ease-in-out infinite alternate-reverse;
}

@keyframes driftSmoke {
    0% { transform: translateX(-5%) translateY(10%) scale(1); opacity: 0.3; }
    100% { transform: translateX(5%) translateY(-5%) scale(1.1); opacity: 0.6; }
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 992px) {
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

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

    section[id] {
        scroll-margin-top: 92px;
    }

    #menu {
        scroll-margin-top: 64px;
    }

    #contact {
        scroll-margin-top: 64px;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .story-page .navbar .nav-container > .logo {
        display: none;
    }

    .story-page .navbar .nav-container {
        justify-content: flex-end;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }

}

@media (max-width: 576px) {
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* --- GALLERY COMPONENT --- */
.gallery {
    padding-top: 10rem; /* Give space for fixed navbar */
    min-height: 80vh;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: var(--clr-dark-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-light) 100%);
    color: var(--clr-gold);
    font-size: 2.5rem;
    transition: transform 0.5s ease;
}

.gallery-placeholder span {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
    font-family: var(--font-body);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    color: var(--clr-white);
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

.section-intro {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

.gallery-cta {
    margin: 2rem 0 3rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .gallery {
        padding-top: 7rem;
    }
}

/* --- STORY COMPONENT --- */
.story-page {
    background-color: var(--clr-cream);
}

.story-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--clr-dark);
    overflow: hidden;
}

.story-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}

.story-placeholder-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 900px;
}

.story-hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.story-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--clr-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.story-hero-subtitle {
    font-size: 1.2rem;
    color: var(--clr-gold);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 5px;
}

.story-section {
    padding: 6rem 0;
    position: relative;
}

.story-section-dark {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

.story-split {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.story-split.reverse {
    flex-direction: row-reverse;
    align-items: flex-start;
}

.story-content-block {
    flex: 1;
}

.story-image-block {
    flex: 1;
    position: relative;
}

.story-image {
    width: 100%;
    height: 500px;
    background-color: var(--clr-dark-light);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.story-image-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-image-vintage .story-image-media {
    filter: sepia(0.4) contrast(1.05);
}

.story-image-harbor .story-image-media {
    filter: sepia(0.5) contrast(1.1);
    object-position: center 30%;
}

.story-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.story-image-overlay-warm {
    background: rgba(10,5,0,0.3);
}

.story-archive-badge {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 2;
    background: rgba(0,0,0,0.6);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border-left: 3px solid var(--clr-gold);
}

.story-archive-label {
    color: var(--clr-gold);
    font-size: 0.75rem;
    font-family: var(--font-body);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.story-image::after {
    content: '';
    position: absolute;
    top: -15px; left: -15px; right: 15px; bottom: 15px;
    border: 2px solid var(--clr-gold);
    z-index: -1;
    border-radius: 4px;
    transition: var(--transition);
}

.story-split.reverse .story-image::after {
    left: 15px; right: -15px;
}

.story-section-dark .story-image::after {
    display: none;
}

.story-heading {
    font-size: 2.8rem;
    color: var(--clr-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}
.story-section-dark .story-heading {
    color: var(--clr-gold);
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}
.story-section-dark .story-text {
    color: rgba(255,255,255,0.7);
}

.story-quote {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--clr-amber);
    border-left: 4px solid var(--clr-gold);
    padding-left: 2rem;
    margin: 3rem 0;
    font-style: italic;
    line-height: 1.5;
}

.story-video-placeholder {
    margin-top: 2rem;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background: url('assets/images/ataman_restoran.jpg') center/cover no-repeat;
}

.story-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.story-video-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--clr-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 12px rgba(197,160,89,0.2);
}

.story-video-play-icon {
    font-size: 1.8rem;
    color: #000;
    margin-left: 4px;
}

.story-video-text {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.story-cta {
    margin-top: 2rem;
}

.info-page {
    background: linear-gradient(180deg, #131313 0%, #191919 280px, var(--clr-cream) 280px, var(--clr-cream) 100%);
}

.info-hero {
    padding: 9rem 0 4rem;
    color: var(--clr-white);
}

.info-hero .section-subtitle {
    color: var(--clr-gold);
}

.info-hero .section-subtitle::before {
    background-color: var(--clr-gold);
}

.info-hero-title {
    max-width: 720px;
    margin-bottom: 1rem;
}

.info-hero-description {
    max-width: 720px;
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
}

.info-content-section {
    padding: 0 0 6rem;
}

.info-card {
    background-color: var(--clr-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.info-card + .info-card {
    margin-top: 1.5rem;
}

.info-card h2 {
    margin-bottom: 1rem;
}

.info-card h3 {
    margin: 1.75rem 0 0.75rem;
    color: var(--clr-dark);
}

.info-card p,
.info-card li {
    color: rgba(26,26,26,0.78);
}

.info-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1rem;
    padding-left: 1.25rem;
    list-style: disc;
}

.info-card a {
    color: var(--clr-amber);
    font-weight: 600;
}

.info-card .btn,
.info-card a.btn {
    color: var(--clr-white);
}

.info-card .btn-primary:hover,
.info-card a.btn-primary:hover {
    color: var(--clr-amber);
}

.info-note {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--clr-amber);
    background-color: rgba(217,106,43,0.08);
    color: rgba(26,26,26,0.76);
}

.menu-page-section {
    padding-top: 0;
}

.menu-page .info-hero {
    padding-bottom: 2rem;
}

.menu-page .info-hero-title {
    margin-bottom: 0;
}

.menu-page-section .section-intro {
    color: rgba(255,255,255,0.66);
}

.menu-page-note-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.menu-page-note-grid .info-card {
    height: 100%;
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-content: start;
}

.menu-page-note-grid .info-card + .info-card,
.contact-page-layout .info-card + .info-card,
.contact-page-secondary .info-card + .info-card {
    margin-top: 0;
}

.menu-page-note-grid .info-card p {
    margin-bottom: 0;
}

.info-card-soft {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(26,26,26,0.06);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.info-eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--clr-amber);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.info-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

.info-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--clr-dark);
    font-weight: 600;
}

.info-link-cta:hover {
    color: var(--clr-amber);
}

.menu-page-cta-card,
.contact-page-secondary {
    margin-top: 1.5rem;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.25rem;
    align-items: stretch;
}

.contact-page.info-page {
    background: linear-gradient(180deg, var(--clr-cream-dark) 0%, var(--clr-cream) 100%);
}

.contact-page .info-hero {
    padding: 6.2rem 0 0.9rem;
    color: var(--clr-dark);
}

.contact-page .info-hero-title {
    max-width: none;
    margin-bottom: 0;
    color: var(--clr-dark);
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    line-height: 1.06;
    white-space: nowrap;
}

.contact-page .info-content-section {
    padding: 0.35rem 0 4rem;
}

.contact-page .info-card {
    padding: 2rem;
}

.contact-page-panel,
.contact-page-map-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-page-panel .info-list {
    gap: 0.9rem;
}

.contact-page-panel .info-item {
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(26,26,26,0.08);
}

.contact-page-panel .info-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-page-panel .info-button-row {
    margin-top: auto;
    padding-top: 1rem;
}

.contact-page-map-card {
    padding: 2rem;
}

.contact-page-panel h2,
.contact-page-map-card h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: 0.6rem;
}

.contact-page .info-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
}

.contact-page-map-card .map-wrapper {
    margin-top: 0.95rem;
    flex: 1 1 auto;
    height: 330px;
    min-height: 330px;
}

.contact-page-map-card .map-wrapper iframe {
    height: 330px;
    min-height: 330px;
}

.contact-page .info-text h4 {
    margin-bottom: 0.15rem;
}

.contact-page .info-text p {
    font-size: 0.95rem;
    line-height: 1.45;
}

.contact-page .info-button-row .btn {
    padding: 0.95rem 1.5rem;
}

.contact-page-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.info-item-link {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item-link:focus-visible {
    outline: 2px solid var(--clr-amber);
    outline-offset: 6px;
    border-radius: 10px;
}

.info-item-link:hover .info-icon,
.info-item-link:focus-visible .info-icon {
    background-color: var(--clr-amber);
    color: var(--clr-white);
}

.info-item-link .info-text p {
    margin: 0;
}

.info-page .reveal-up,
.info-page .reveal-left,
.info-page .reveal-right {
    opacity: 1;
    transform: none;
}

@media (max-width: 992px) {
    .story-split, .story-split.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    .story-image {
        height: 320px;
    }
    .story-image::after {
        display: none;
    }
    .story-heading {
        font-size: 2rem;
    }
    .story-section {
        padding: 3.5rem 0;
    }
    .story-quote {
        font-size: 1.25rem;
        margin: 2rem 0;
        padding-left: 1.25rem;
    }
    .story-text {
        font-size: 1rem;
    }

    .story-image-vintage {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .story-image-vintage .story-image-media {
        object-position: center top;
    }

    .info-hero {
        padding: 8rem 0 3rem;
    }

    .info-card {
        padding: 2.25rem;
    }

    .contact-page-map-card {
        padding: 2.25rem;
    }

    .menu-page-note-grid,
    .contact-page-layout,
    .contact-page-secondary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-trust-badge {
        font-size: 0.72rem;
        padding: 0.55rem 0.75rem;
        gap: 0.35rem;
        white-space: normal;
        flex-wrap: wrap;
        line-height: 1.4;
        margin-bottom: 1.35rem;
    }
    .trust-dot {
        display: none;
    }
    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        align-items: flex-start;
        padding: max(5.3rem, calc(env(safe-area-inset-top) + 4.35rem)) 0 calc(2.1rem + env(safe-area-inset-bottom));
    }
    .hero-content {
        width: 100%;
        padding-top: 1.35rem;
        min-height: calc(100svh - 8rem);
        min-height: calc(100dvh - 8rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        display: flex;
        flex-direction: column;
    }
    .chicken-canvas {
        display: none;
    }
    .scroll-down,
    .floating-ember,
    .smoke-layer {
        display: none;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }
    .hero-desc {
        font-size: 1rem;
        margin: 1rem 0 1.5rem;
        max-width: none;
    }
    .hero-buttons {
        margin-top: auto;
        padding-top: 0.25rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-buttons .btn {
        width: calc(100% + 2rem);
        margin-left: -1rem;
        margin-right: -1rem;
        text-align: center;
        padding: 1rem 1rem;
    }
    .story-section {
        padding: 2.5rem 0;
    }
    .story-split, .story-split.reverse {
        gap: 1.5rem;
    }
    .story-image {
        height: 240px;
    }
    .story-heading {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .story-hero {
        height: 50vh;
        min-height: 300px;
    }
    .story-hero-content {
        padding: 0 1rem;
    }
    .story-hero-title {
        font-size: 2rem;
    }
    .story-hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    .story-hero-content p {
        font-size: 0.95rem !important;
    }
    .story-quote {
        font-size: 1.1rem;
        margin: 1.5rem 0;
    }
    .container {
        padding: 0 1rem;
    }
    .section-padding {
        padding: 2.5rem 0;
    }
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.04;
    }
    .about-text .section-title {
        margin-bottom: 1.1rem;
    }
    .about-content {
        margin-top: 0.35rem;
    }
    .about-grid {
        gap: 2rem;
    }
    .about-image {
        height: 280px;
    }
    .experience-badge {
        width: 110px;
        height: 110px;
        bottom: -20px;
        left: -10px;
    }
    .experience-badge::after {
        width: 96px;
        height: 96px;
    }
    .experience-badge .year {
        font-size: 1.35rem;
    }
    .banner {
        padding: 2.75rem 0;
    }
    .banner p {
        font-size: 1rem;
    }
    .contact-wrapper {
        gap: 2rem;
    }
    .map-wrapper {
        min-height: 280px;
    }
    .map-wrapper iframe {
        min-height: 280px;
    }
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .mobile-nav {
        width: min(82vw, 260px);
        padding-top: 6.6rem;
    }
    .footer-content {
        gap: 2rem;
    }
    .story-video-placeholder {
        border-radius: 8px !important;
    }
    .info-page {
        background: linear-gradient(180deg, #131313 0%, #191919 220px, var(--clr-cream) 220px, var(--clr-cream) 100%);
    }
    .info-hero {
        padding: 7rem 0 2.25rem;
    }
    .info-hero-title {
        font-size: 2.2rem;
    }
    .info-hero-description {
        font-size: 0.98rem;
    }
    .info-content-section {
        padding-bottom: 3rem;
    }
    .info-card {
        padding: 1.5rem;
        border-radius: 18px;
    }
    .contact-page-map-card {
        padding: 1.5rem;
    }
    .page-pills {
        gap: 0.6rem;
    }
    .page-pill {
        font-size: 0.84rem;
        padding: 0.6rem 0.85rem;
    }
    .info-button-row {
        flex-direction: column;
        align-items: stretch;
    }
    .info-link-cta {
        justify-content: space-between;
    }
    .contact-page .info-hero {
        padding: 5.6rem 0 0.85rem;
    }
    .contact-page .info-hero-title {
        font-size: clamp(2rem, 5.2vw, 2.7rem);
        white-space: normal;
    }
    .contact-page-map-card .map-wrapper,
    .contact-page-map-card .map-wrapper iframe {
        height: 300px;
        min-height: 300px;
    }
}

@media (max-width: 576px) and (max-height: 820px) and (orientation: portrait) {
    .hero {
        padding: max(4.6rem, calc(env(safe-area-inset-top) + 3.75rem)) 0 calc(1.35rem + env(safe-area-inset-bottom));
    }
    .hero-trust-badge {
        margin-bottom: 0.85rem;
    }
    .hero-title {
        font-size: 1.95rem;
    }
    .hero-desc {
        font-size: 0.94rem;
        margin-bottom: 1rem;
    }
    .hero-buttons .btn {
        padding: 0.85rem 1rem;
    }
}

@media (max-width: 576px) and (orientation: portrait) {
    .stats {
        align-items: center;
        text-align: center;
    }
    .stat-item {
        align-items: center;
    }
}

@media (orientation: landscape) and (max-height: 500px) and (hover: none) and (pointer: coarse) {
    .navbar {
        padding: 0.8rem 0;
    }
    .navbar.scrolled, .navbar.navbar-solid {
        padding: 0.65rem 0;
    }
    .logo-text {
        font-size: 1.4rem;
    }
    .logo-sub {
        font-size: 0.58rem;
        letter-spacing: 2px;
    }
    .nav-links {
        gap: 1.35rem;
    }
    .nav-links a {
        font-size: 0.82rem;
    }
    .mobile-menu-btn {
        font-size: 1.35rem;
    }
    .mobile-nav {
        height: 100dvh;
        width: min(54vw, 280px);
        gap: 0.85rem;
        padding: max(4.25rem, calc(env(safe-area-inset-top) + 3rem)) 1rem calc(1rem + env(safe-area-inset-bottom));
    }
    .mobile-nav-close {
        top: 1rem;
        right: 1rem;
    }
    .mobile-nav a {
        font-size: 1.15rem;
    }
    .hero {
        min-height: 100dvh;
        align-items: flex-start;
        padding: max(4.15rem, calc(env(safe-area-inset-top) + 3rem)) 0 calc(1rem + env(safe-area-inset-bottom));
    }
    .hero-content {
        max-width: 560px;
        padding-top: 0.55rem;
    }
    .hero-trust-badge {
        margin-bottom: 0.75rem;
        font-size: 0.68rem;
        padding: 0.45rem 0.75rem;
    }
    .hero-subtitle {
        font-size: 0.78rem;
        letter-spacing: 2.5px;
        margin-bottom: 0.45rem;
    }
    .hero-title {
        font-size: clamp(1.9rem, 4.4vw, 2.6rem);
        line-height: 1.02;
    }
    .hero-desc {
        max-width: 480px;
        font-size: 0.92rem;
        margin: 0.7rem 0 0.9rem;
    }
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.7rem;
        margin-top: 0.8rem;
    }
    .hero-buttons .btn {
        width: auto;
        margin: 0;
        padding: 0.78rem 1.05rem;
        font-size: 0.9rem;
    }
    .scroll-down {
        display: none;
    }
    .story-hero {
        height: 100dvh;
        min-height: 0;
    }
    .story-hero-content {
        max-width: 680px;
        padding: 0 1.5rem;
    }
    .story-hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
    .story-hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 0.7rem;
    }
    .story-hero-description {
        font-size: 0.98rem;
        max-width: 520px;
    }
    .gallery {
        padding-top: 6.5rem;
    }
    .info-page {
        background: linear-gradient(180deg, #131313 0%, #191919 180px, var(--clr-cream) 180px, var(--clr-cream) 100%);
    }
    .info-hero {
        padding: max(5.75rem, calc(env(safe-area-inset-top) + 4rem)) 0 1.8rem;
    }
    .info-hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    .info-hero-description {
        font-size: 0.95rem;
    }
    .contact-page .info-hero {
        padding: max(4.9rem, calc(env(safe-area-inset-top) + 3.7rem)) 0 0.8rem;
    }
    .contact-page .info-hero-title {
        font-size: clamp(1.65rem, 7.4vw, 2.2rem);
        white-space: normal;
    }
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-entrance {
        opacity: 1;
        transform: none;
        animation: none !important;
    }

    .hero-bg,
    .floating-ember,
    .smoke-layer,
    .wheel {
        animation: none !important;
    }
}
