/* ============================================
   ENSŌ NO SATO - Styles
   Luxury Minimalism / Japanese Zen Aesthetic
   ============================================ */

/* CSS Variables */
:root {
    --color-bg-deep: #0a0a0a;
    --color-bg-charcoal: #141414;
    --color-bg-section: #0d0d0d;
    --color-overlay: rgba(10, 10, 10, 0.5);
    --color-text-primary: #f5f2eb;
    --color-text-secondary: #c4bfb3;
    --color-text-subtle: #8a857a;
    --color-accent: #c9a962;
    --color-accent-red: #c23a3a;
    --color-border: rgba(255, 255, 255, 0.1);
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-japanese: 'Noto Serif JP', serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: 0.5s ease;
    --transition-fast: 0.3s ease;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   VIDEO BACKGROUND
   ============================================ */

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--color-bg-deep);
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.7) 100%);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-md);
    padding-bottom: 120px; /* Space for footer */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
    animation-delay: 0.3s;
}

/* ============================================
   LARGE CENTERED LOGO
   ============================================ */

.logo-container {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.logo {
    width: clamp(320px, 55vw, 500px);
    height: auto;
    /* No filters needed - logo is already white with red stamp on transparent bg */
}


/* ============================================
   HERO FOOTER
   ============================================ */

.footer {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
    animation-delay: 1s;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.3;
}

.footer-address {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.footer-social {
    margin-top: var(--spacing-xs);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-subtle);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.social-link svg {
    width: clamp(24px, 3vw, 36px);
    height: clamp(24px, 3vw, 36px);
}

.social-handle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-sm);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 2s ease forwards, bounce 2s ease-in-out infinite;
    animation-delay: 2s, 3s;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-subtle);
}

.scroll-arrow {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--color-text-subtle), transparent);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    position: relative;
    background-color: var(--color-bg-deep);
    padding: var(--spacing-xl) var(--spacing-md);
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.gallery-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.gallery-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--color-text-subtle);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--color-bg-charcoal);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-medium);
    cursor: pointer;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.gallery-haiku {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 60%, transparent 100%);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

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

.haiku-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text-secondary);
    text-align: center;
}

/* ============================================
   INFO SECTION
   ============================================ */

.info-section {
    background-color: var(--color-bg-section);
    padding: var(--spacing-xl) var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

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

.story-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--color-border);
}

.info-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.info-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.info-tagline {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-accent);
    margin-top: var(--spacing-md);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.info-block {
    padding: var(--spacing-md);
}

.hours-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hours-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.hours-item p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.experience-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--color-border);
}

.experience-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.experience-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-accent);
}

.info-link {
    display: block;
    color: var(--color-text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-text-subtle);
    transition: color var(--transition-fast), border-color var(--transition-fast);
    margin-top: var(--spacing-sm);
    width: fit-content;
}

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

.resy-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-bg-deep);
    background-color: var(--color-text-primary);
    border: 1px solid var(--color-text-primary);
    transition: all var(--transition-fast);
    margin-top: var(--spacing-sm);
}

.resy-button:hover {
    color: var(--color-text-primary);
    background-color: transparent;
}

/* ============================================
   EXPERIENCES SECTION
   ============================================ */

.experiences-section {
    position: relative;
    background-color: var(--color-bg-deep);
    padding: var(--spacing-xl) var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.experiences-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.experiences-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.experiences-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--color-text-subtle);
}

.experiences-container {
    max-width: 1400px;
    margin: 0 auto;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.experience-media-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--color-bg-charcoal);
    border-radius: 4px;
}

.experience-media-item img,
.experience-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.experience-media-item:hover img,
.experience-media-item:hover video {
    transform: scale(1.05);
}

.experience-media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-secondary);
}

.experiences-coming-soon,
.chefs-coming-soon {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.coming-soon-icon {
    color: var(--color-accent);
    opacity: 0.6;
    margin-bottom: var(--spacing-md);
}

.coming-soon-text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.coming-soon-subtext {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: var(--color-text-subtle);
    font-style: italic;
}

/* ============================================
   MEET THE CHEFS SECTION
   ============================================ */

.chefs-section {
    position: relative;
    background-color: var(--color-bg-section);
    padding: var(--spacing-xl) var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.chefs-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.chefs-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.chefs-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--color-text-subtle);
}

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

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.chef-card {
    text-align: center;
    padding: var(--spacing-md);
}

.chef-photo-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-accent);
    background-color: var(--color-bg-charcoal);
}

.chef-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.chef-card:hover .chef-photo-wrapper img {
    transform: scale(1.1);
}

.chef-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.chef-role {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--color-text-subtle);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.chef-bio {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================
   FINAL FOOTER
   ============================================ */

.final-footer {
    background-color: var(--color-bg-deep);
    padding: var(--spacing-xl) var(--spacing-md);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.final-footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    width: 150px;
    height: auto;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.final-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.final-address {
    font-size: 0.9rem;
    color: var(--color-text-subtle);
    margin-bottom: var(--spacing-sm);
}

.final-phone {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-subtle);
    text-decoration: none;
    transition: color var(--transition-fast);
    margin-bottom: var(--spacing-sm);
}

.final-phone:hover {
    color: var(--color-text-primary);
}

.final-social {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--color-text-subtle);
    text-decoration: none;
    transition: color var(--transition-fast);
    margin-bottom: var(--spacing-md);
}

.final-social:hover {
    color: var(--color-text-primary);
}

.copyright {
    font-size: 0.75rem;
    color: var(--color-text-subtle);
    opacity: 0.6;
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-image-container {
    flex: 1;
    max-width: 60%;
    display: flex;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-haiku-container {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-lg);
    border-left: 1px solid var(--color-border);
}

.lightbox-haiku {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 2.2;
    color: var(--color-text-secondary);
    text-align: left;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: var(--color-text-subtle);
    cursor: pointer;
    transition: color var(--transition-fast), transform var(--transition-fast);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-text-primary);
    transform: rotate(90deg);
}

/* Navigation arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--color-text-subtle);
    cursor: pointer;
    padding: 1rem;
    transition: color var(--transition-fast);
    user-select: none;
}

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

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

@media (max-width: 900px) {
    .lightbox-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .lightbox-image-container {
        max-width: 100%;
    }
    
    .lightbox-haiku-container {
        flex: none;
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding: var(--spacing-md);
        text-align: center;
    }
    
    .lightbox-haiku {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .lightbox-nav {
        font-size: 2rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .hero {
        padding: var(--spacing-md);
    }
    
    .logo {
        width: clamp(250px, 45vw, 400px);
    }
    
    .footer-tagline {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        letter-spacing: 0.25em;
    }
    
    .footer-address {
        font-size: clamp(1rem, 2vw, 1.3rem);
    }
}

/* Tablets */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 2.5rem;
        --spacing-xl: 4rem;
    }

    .hero {
        padding: var(--spacing-md) var(--spacing-sm);
        padding-bottom: 160px;
        min-height: 100svh;
    }

    .logo {
        width: clamp(180px, 50vw, 280px);
    }

    .footer {
        bottom: 20px;
        width: 95%;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .gallery-haiku {
        transform: translateY(0);
        position: relative;
        background: var(--color-bg-charcoal);
    }

    .gallery-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .gallery-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

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

    .info-title {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
    }

    .scroll-indicator {
        display: none;
    }

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

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

    .chef-photo-wrapper {
        width: 180px;
        height: 180px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }
    
    .hero {
        padding: var(--spacing-sm);
        padding-bottom: 150px;
    }
    
    .logo {
        width: clamp(150px, 55vw, 200px);
    }
    
    .footer {
        bottom: 15px;
        width: 100%;
        padding: 0 var(--spacing-xs);
    }
    
    .gallery-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .gallery-header {
        margin-bottom: var(--spacing-lg);
    }
    
    .gallery-title {
        font-size: 1.3rem;
    }
    
    .haiku-text {
        font-size: 0.9rem;
    }
    
    .info-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .story-block {
        padding-bottom: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
    
    .info-block {
        padding: var(--spacing-sm);
    }
    
    .resy-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .final-footer {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .footer-logo {
        width: 100px;
    }
    
    .final-tagline {
        font-size: 0.95rem;
    }
    
    .final-address {
        font-size: 0.8rem;
    }

    .experiences-section,
    .chefs-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .chef-photo-wrapper {
        width: 150px;
        height: 150px;
    }

    .chef-name {
        font-size: 1.2rem;
    }

    .chef-bio {
        font-size: 0.9rem;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .hero {
        padding-bottom: 140px;
    }
    
    .logo {
        width: 130px;
    }
    
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: var(--spacing-sm);
    }
    
    .logo {
        width: clamp(120px, 25vh, 200px);
    }
    
    .footer {
        bottom: 10px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .footer-address {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .footer-social {
        margin-top: 0.25rem;
    }
    
    .social-handle {
        font-size: 0.8rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   NAVIGATION MENU
   ============================================ */

/* Hamburger Menu Toggle Button */
.menu-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 48px;
    height: 48px;
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu-toggle:hover {
    background: rgba(13, 13, 13, 0.95);
    border-color: rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.menu-bar {
    width: 24px;
    height: 2px;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Navigation Menu Panel */
.nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile Safari */
    background: rgba(13, 13, 13, 0.98);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-menu.active {
    right: 0;
}

/* Close Button */
.nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #d4af37;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-close:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: rotate(90deg);
}

/* Navigation Links */
.nav-links {
    list-style: none;
    padding: 5rem 2rem 2rem;
    margin: 0;
    flex: 1;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: block;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
    padding-left: 1rem;
    border-bottom-color: rgba(212, 175, 55, 0.4);
}

/* Navigation Footer with Admin Link */
.nav-footer {
    padding: 2rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 20px));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: auto;
}

.nav-admin-link {
    display: block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    color: rgba(212, 175, 55, 0.7);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
}

.nav-admin-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #d4af37;
}

/* Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

/* Mobile adjustments for menu button */
@media (max-width: 768px) {
    .menu-toggle {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    .menu-bar {
        width: 20px;
    }

    .nav-menu {
        width: 280px;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.85rem 0;
    }

    .nav-links {
        padding-top: 4rem;
    }

    .nav-footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom, 30px));
    }
}

/* Extra small phones - ensure admin link is always accessible */
@media (max-width: 480px) {
    .nav-links {
        padding: 4rem 1.5rem 1rem;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }

    .nav-footer {
        padding: 1.5rem;
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 40px));
    }

    .nav-admin-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}
