/* --------------------------------------------------
   AURA DESIGN SYSTEM & STYLE SHEET
   Warm Linen, Charcoal, Brushed Bronze
   Light Editorial Magazine Aesthetic
-------------------------------------------------- */

:root {
    /* Color Palette */
    --bg-deep: #faf8f5; /* Warm Sand / Linen Paper */
    --bg-primary: #faf8f5;
    --bg-secondary: #f4efea; /* Slightly darker linen shade */
    --bg-surface: #ede7df; /* Textured linen shadow */
    
    --accent: #b59a70; /* Brushed Bronze Gold */
    --accent-dark: #8b7047; /* Antique Bronze */
    --accent-light: #e2d7c3; /* Soft Gold/Champagne */
    --accent-rgb: 181, 154, 112;
    
    --text-primary: #1a1a1a; /* Charcoal / Off-black */
    --text-muted: #5e6661; /* Muted Slate Olive */
    --text-dark: #8b958e; /* Muted Sage-Gray */
    
    /* Layout & Effects */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --glass-bg: rgba(250, 248, 245, 0.85);
    --glass-border: rgba(181, 154, 112, 0.2);
    --glass-shadow: 0 10px 30px rgba(181, 154, 112, 0.05);
}

/* --------------------------------------------------
   BASE RESET & UTILITIES
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: auto; /* Handled by Lenis */
    overflow-x: hidden;
    background-color: var(--bg-deep);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(181, 154, 112, 0.3);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Selection */
::selection {
    background-color: rgba(181, 154, 112, 0.15);
    color: var(--text-primary);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 350;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

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

/* Custom cursor default override */
button, a {
    cursor: none;
}

/* Custom classes */
.serif-italic {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
}

/* --------------------------------------------------
   CUSTOM MOUSE CURSOR (Minimalist Bronze)
-------------------------------------------------- */
.custom-cursor {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(181, 154, 112, 0.6);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10001;
}

/* Cursor States */
.custom-cursor.hovered {
    width: 48px;
    height: 48px;
    background-color: rgba(181, 154, 112, 0.05);
    border-color: var(--accent);
}

.custom-cursor.clicked {
    width: 12px;
    height: 12px;
    background-color: rgba(181, 154, 112, 0.8);
    border-color: var(--accent-light);
}

/* --------------------------------------------------
   PRELOADER (Envelope Style)
-------------------------------------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-deep);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s cubic-bezier(0.76, 0, 0.24, 1), visibility 1s;
}

.preloader-content {
    text-align: center;
    width: 80%;
    max-width: 500px;
}

.monogram-wrap {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

.monogram {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 200;
    color: var(--accent);
    border-bottom: 1px solid var(--accent-light);
    padding: 0 1.5rem;
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 0.25em;
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.4s;
}

.preloader-sub {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.6s;
}

.preloader-progress-bar {
    width: 120px;
    height: 1px;
    background-color: var(--accent-light);
    position: relative;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--accent-dark);
    transition: width 0.3s ease-out;
}

.preloader-status {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    font-weight: 300;
    font-style: italic;
    opacity: 0.8;
}

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

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.4rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-smooth);
    position: relative;
    border: none;
}

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

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

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

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-deep);
    border-color: var(--text-primary);
}

.btn-text {
    background-color: transparent;
    color: var(--text-primary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--accent);
}

.btn-text i {
    font-size: 0.7rem;
    margin-left: 0.8rem;
    transition: transform 0.3s;
}

.btn-text:hover i {
    transform: translateX(5px);
}

.btn-block {
    width: 100%;
    padding: 1.3rem;
}

/* --------------------------------------------------
   HEADER / NAVIGATION
-------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 100;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(181, 154, 112, 0.08);
    transition: height 0.4s, background-color 0.4s, border-color 0.4s;
    backdrop-filter: blur(0px);
}

.header.scrolled {
    height: 80px;
    background-color: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.header-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 350;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    display: inline-block;
    padding: 0.5rem;
}

.nav-menu {
    display: flex;
    gap: 3.5rem;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 0.8rem 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Hamburger toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 0.5rem;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------
   MOBILE MENU OVERLAY
-------------------------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-deep);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu-content {
    z-index: 2;
    text-align: center;
    width: 80%;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    display: inline-block;
    transition: transform 0.3s, color 0.3s;
}

.mobile-link span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--accent);
    margin-right: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.mobile-link:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.mobile-menu-footer {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

/* Open Mobile Menu State */
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu.active .mobile-menu-bg {
    transform: scaleY(1);
}

.mobile-menu.active .mobile-menu-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.mobile-menu-toggle.active .bar:first-child {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--accent);
}

.mobile-menu-toggle.active .bar:last-child {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--accent);
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    width: 100%;
    height: calc(100vh - 100px);
}

.hero-text-col {
    padding: 0 5% 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 2.2rem;
    color: var(--text-primary);
}

.hero-title span {
    display: inline-block;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.hero-actions-wrap {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
}

/* Visual Column & Slideshow */
.hero-visual-col {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.hero-slideshow {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0% 0% 0% 0%);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.hero-slide.active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* Slider controls inside hero visual */
.hero-slider-arrows {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 1.5rem;
    z-index: 5;
}

.slide-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(250, 248, 245, 0.9);
    border: 1px solid var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.slide-arrow:hover {
    background-color: var(--text-primary);
    color: var(--bg-deep);
    border-color: var(--text-primary);
}

.slide-counter {
    position: absolute;
    bottom: 50px;
    right: 40px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--bg-deep);
    z-index: 5;
    background-color: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
}

#currSlide {
    color: var(--accent-light);
}

/* Scroll down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 5;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(181, 154, 112, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: -1px;
    width: 3px;
    height: 10px;
    background-color: var(--text-primary);
    border-radius: 1px;
    animation: scrollScroll 2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

/* --------------------------------------------------
   PHILOSOPHY / STORY SECTION (Asymmetric)
-------------------------------------------------- */
.philosophy-section {
    padding: 12rem 0;
    background-color: var(--bg-deep);
    position: relative;
    z-index: 5;
}

.section-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 8rem;
    align-items: center;
}

.philosophy-visual-col {
    position: relative;
    width: 100%;
}

/* Color block reveal mask styling */
.reveal-mask-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125%; /* Portrait ratio */
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.reveal-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-light);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 2;
}

.reveal-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}

.section-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.section-desc-secondary {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    font-weight: 350;
}

.philosophy-quote {
    padding-left: 2.5rem;
    border-left: 1px solid var(--accent);
}

.philosophy-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.philosophy-quote cite {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-style: normal;
    display: block;
}

/* --------------------------------------------------
   THE degustacion MENU
-------------------------------------------------- */
.menu-section {
    padding: 12rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(181, 154, 112, 0.08);
}

.menu-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: flex-end;
    margin-bottom: 6rem;
}

.menu-header-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

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

/* Menu Card structural styling */
.menu-card-wrap {
    perspective: 1000px;
    width: 100%;
}

.menu-card {
    background-color: var(--bg-primary);
    border: 1px solid rgba(181, 154, 112, 0.12);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
    transition: var(--transition-smooth), border-color 0.4s;
    box-shadow: 0 4px 20px rgba(181, 154, 112, 0.02);
}

.menu-card-image-wrap {
    position: relative;
    width: 100%;
    padding-top: 110%; /* Portrait aspect */
    overflow: hidden;
    margin-bottom: 2rem;
    transform: translateZ(20px);
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    transform: translateZ(10px);
}

.card-num {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.card-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2.2rem;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(181, 154, 112, 0.08);
    padding-top: 1.5rem;
}

.card-cat {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-primary);
}

/* Menu card hover triggers */
.menu-card-wrap:hover .menu-card {
    border-color: var(--accent);
    background-color: var(--bg-secondary);
    box-shadow: 0 20px 40px rgba(181, 154, 112, 0.06);
}

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

.menu-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(181, 154, 112, 0.12);
    padding-top: 3rem;
}

.menu-pairing-info {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.menu-pairing-info strong {
    color: var(--text-primary);
}

/* --------------------------------------------------
   DRAGGABLE FLUID IMAGE GALLERY
-------------------------------------------------- */
.gallery-section {
    padding: 12rem 0;
    background-color: var(--bg-primary);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.gallery-header {
    max-width: 650px;
    margin-bottom: 5rem;
}

.draggable-gallery-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-slider {
    display: flex;
    gap: 3.5rem;
    padding-left: 5%;
    padding-right: 5%;
    width: max-content;
    will-change: transform;
}

.gallery-slide {
    width: 420px;
    flex-shrink: 0;
}

.slide-img-container {
    position: relative;
    width: 100%;
    padding-top: 135%; /* Portrait ratio */
    overflow: hidden;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(181, 154, 112, 0.05);
    margin-bottom: 1.5rem;
}

.gal-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slide-info h4 {
    font-size: 1.4rem;
    font-weight: 350;
    margin-bottom: 0.5rem;
}

.slide-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Gallery drag UI feedback */
.gallery-drag-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 5rem;
    opacity: 0.7;
}

.drag-line {
    width: 150px;
    height: 1px;
    background-color: rgba(181, 154, 112, 0.3);
    position: relative;
    overflow: hidden;
}

.drag-text {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* --------------------------------------------------
   RESERVATION SECTION
-------------------------------------------------- */
.reservation-section {
    padding: 12rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(181, 154, 112, 0.08);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 8rem;
    align-items: center;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    margin-top: 4.5rem;
}

.info-block {
    display: flex;
    gap: 2rem;
}

.info-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}

.info-block h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.info-block p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

/* Form Styles */
.form-wrapper {
    position: relative;
    min-height: 520px;
    width: 100%;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    transition: opacity 0.5s, transform 0.5s;
}

.form-row {
    position: relative;
    width: 100%;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.3s;
}

.input-group select {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 1.2em;
    cursor: none;
}

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

.input-group label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating labels movement triggers */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label {
    top: -1.2rem;
    font-size: 0.7rem;
    color: var(--accent-dark);
    letter-spacing: 0.05em;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-group input:focus ~ .input-line,
.input-group textarea:focus ~ .input-line,
.input-group select:focus ~ .input-line {
    transform: scaleX(1);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-bottom-color: transparent;
}

/* Atmosphere Selector layout */
.experience-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.selector-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.selector-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.option-card {
    position: relative;
    cursor: none;
}

.option-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card-inner {
    border: 1px solid rgba(26, 26, 26, 0.1);
    background-color: rgba(250, 248, 245, 0.5);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: var(--transition-smooth);
}

.opt-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.opt-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.option-card:hover .option-card-inner {
    border-color: var(--accent);
}

.option-card input:checked + .option-card-inner {
    border-color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Success Card system */
.form-success-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-primary);
    border: 1px solid rgba(181, 154, 112, 0.15);
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: var(--transition-smooth);
    z-index: 3;
}

.form-success-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.envelope-monogram {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent);
    border: 1px solid var(--accent-light);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.success-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
    max-width: 320px;
    margin-bottom: 1rem;
}

.success-sub {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 350px;
    margin-bottom: 3rem;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(181, 154, 112, 0.12);
    padding: 8rem 0 4rem 0;
    position: relative;
    z-index: 5;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 350;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    display: block;
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(181, 154, 112, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--accent-dark);
    border-color: var(--accent-dark);
    background-color: rgba(181, 154, 112, 0.05);
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 2.5rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.footer-list a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.3s;
}

.footer-list a i {
    font-size: 0.8rem;
    color: var(--accent);
}

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

.footer-list li span {
    display: block;
}

.muted-days {
    color: var(--text-dark);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(181, 154, 112, 0.08);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
}

.footer-legal a {
    transition: color 0.3s;
}

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

/* --------------------------------------------------
   RESPONSIVE MEDIA QUERIES
-------------------------------------------------- */

@media (max-width: 1200px) {
    .grid-container {
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .menu-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .reservation-grid {
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    /* Touchscreen compatibility: disable custom cursor */
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
    
    body, button, a {
        cursor: auto !important;
    }

    .nav-menu,
    .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .hero-text-col {
        padding: 4rem 5%;
        align-items: center;
        text-align: center;
    }
    
    .hero-visual-col {
        height: 60vh;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    
    .philosophy-visual-col {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .sensory-layout {
        grid-template-columns: 1fr;
    }
    
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .header {
        height: 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .gallery-slider {
        gap: 2rem;
    }
    
    .gallery-slide {
        width: 300px;
    }
    
    .form-wrapper,
    .form-success-card {
        padding: 2.5rem 1.5rem;
    }
    
    .split-row {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    
    .selector-options {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}


/* --------------------------------------------------------------------------
   DEMO WATERMARK
   -------------------------------------------------------------------------- */
.demo-watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
}

.demo-watermark:hover {
    background: #0F766E;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(15, 118, 110, 0.3);
}

.demo-watermark strong {
    font-weight: 700;
}
