/* Global Styles */
/* Global Styles */
:root {
    --nav-font: 'Unbounded', sans-serif;
    --desc-font: 'Cormorant Garamond', serif;
    --body-font: 'Montserrat', sans-serif;

    --bg-color: #f8f5f2;
    --text-color: #333333;
    --accent-color: #c0a062;
    --dark-green: #2c3e50;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 400;
    color: var(--dark-green);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.container {
    max-width: 1400px;
    /* Wider for the new layout */
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    color: white;
    transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align to top */
}

.nav-left,
.nav-right {
    flex: 1;
    display: flex;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link-text {
    font-family: var(--nav-font);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.9;
}

.nav-link-text:hover {
    opacity: 1;
}

.nav-center {
    flex: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-overline {
    font-family: var(--nav-font);
    font-size: 0.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
    position: relative;
}

.logo-overline::before,
.logo-overline::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--white);
    vertical-align: middle;
    margin: 0 10px;
    opacity: 0.7;
}

.logo-main {
    font-family: var(--nav-font);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Hero */
.hero {
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Push to right */
    padding-right: 10%;
    /* Spacing from right edge */
}

.hero-text-group {
    text-align: left;
    max-width: 600px;
    opacity: 0;
    animation: fadeInMove 1.5s ease-out forwards 0.5s;
}

@keyframes fadeInMove {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--nav-font);
    /* Using Unbounded as likely sans-serif match */
    color: white;
    font-size: 2.2rem;
    line-height: 1.3;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-subtitle {
    font-family: var(--desc-font);
    /* Cormorant Garamond */
    font-style: italic;
    font-size: 1.1rem;
    /* Smaller, elegant */
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 80px;
    width: 1px;
    overflow: hidden;
}

.line {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}

.line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: #ffffff;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        top: -50%;
    }

    100% {
        top: 100%;
    }
}

/* Infinity Slider Section */
.infinity-slider-section {
    background-color: #ffffff;
    padding: 4rem 0;
    /* Vertical spacing */
    height: 70vh;
    /* Height from reference strip */
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Split Section (Coffee Lounge) */
.split-section {
    display: flex;
    height: 100vh;
    height: 100dvh;
    width: 100%;
}

.split-image-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #000;
    /* Placeholder bg */
}

.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.fade-slide.active {
    opacity: 1;
}

.fade-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    background-color: #ffffff;
    /* Beige/Taupe from ref */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.content-box {
    max-width: 600px;
    padding: 2rem;
}

.split-subtitle {
    display: block;
    color: #c0a062;
    /* Gold accent */
    font-family: var(--nav-font);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.split-title {
    font-family: var(--nav-font);
    /* Using header font */
    font-size: 40px;
    font-weight: 300;
    color: #333;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.split-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.btn-gold {
    display: inline-block;
    background-color: #c0a062;
    color: white;
    padding: 1rem 2.5rem;
    font-family: var(--nav-font);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-gold:hover {
    background-color: #a3864d;
}

/* Responsive Split */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
        height: auto;
    }

    .split-image-slider {
        height: 50vh;
    }

    .split-content {
        padding: 4rem 2rem;
    }
}

.slider-track {
    display: flex;
    width: calc(350px * 16);
    /* 350px width * 16 slides total */
    animation: scroll 40s linear infinite;
}

.slide {
    width: 350px;
    height: 50vh;
    /* slides are slightly smaller than section */
    padding: 0 15px;
    /* Gap between images */
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 8));
    }

    /* Scroll by the width of the unique set (8 slides) */
}

.taste-gallery-section {
    /* If Section 2 uses this class, ensure it matches the requested style */
    background-color: #ffffff;
    padding: 0;
    color: black;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.taste-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 2rem;
    align-items: stretch;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    padding: 4rem 2rem;
}

/* Highlights Section */
.highlights-section {
    background-color: #f8f5f2;
    /* User specified */
    padding: 6rem 0;
}

.unique-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.h-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    /* Taller/Bigger images */
    overflow: hidden;
}

.h-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Push middle item down slightly */
.highlight-item:nth-child(2) {
    margin-top: 3rem;
}

/* Lift left and right items */
.highlight-item:nth-child(1),
.highlight-item:nth-child(3) {
    margin-top: -3rem;
}

.highlight-item:hover .h-img-wrapper img {
    transform: scale(1.05);
}

.h-title {
    font-family: var(--nav-font);
    /* Using header font */
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .unique-highlights-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 990;
    /* Behind Navbar (1000) */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Space for navbar */
    color: white;
}

body.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
}

.menu-cols {
    display: flex;
    width: 100%;
    height: 100%;
}

.menu-left-img {
    flex: 1;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-left-img img {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    /* Don't touch edges */
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
    /* Smooth fade for image swap */
}

.menu-right-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-menu-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.main-menu-list li {
    margin-bottom: 1rem;
}

.main-menu-list a {
    font-family: var(--nav-font);
    font-size: 1.5rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    letter-spacing: 2px;
    font-weight: 300;
}

.main-menu-list a:hover {
    color: white;
}

.menu-separator {
    width: 100px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 1.5rem 0;
}

.menu-reservation a {
    font-family: var(--nav-font);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    font-weight: 400;
}

.menu-lang {
    margin-top: 1rem;
    font-family: var(--nav-font);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.menu-lang a {
    margin: 0 10px;
}

.menu-lang a.active {
    color: white;
}

/* Ensure Navbar text is visible on dark overlay */
body.menu-open .navbar {
    background-color: transparent;
    /* Or #1a1a1a if needed */
}

body.menu-open .nav-link-text,
body.menu-open .logo-main,
body.menu-open .logo-overline {
    color: white;
}

/* Animation for menu items */
.main-menu-list li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

body.menu-open .main-menu-list li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay */
body.menu-open .main-menu-list li:nth-child(1) {
    transition-delay: 0.1s;
}

body.menu-open .main-menu-list li:nth-child(2) {
    transition-delay: 0.15s;
}

body.menu-open .main-menu-list li:nth-child(3) {
    transition-delay: 0.2s;
}

body.menu-open .main-menu-list li:nth-child(4) {
    transition-delay: 0.25s;
}

body.menu-open .main-menu-list li:nth-child(5) {
    transition-delay: 0.3s;
}

body.menu-open .main-menu-list li:nth-child(6) {
    transition-delay: 0.35s;
}

body.menu-open .main-menu-list li:nth-child(7) {
    transition-delay: 0.4s;
}

body.menu-open .main-menu-list li:nth-child(8) {
    transition-delay: 0.45s;
}

body.menu-open .main-menu-list li:nth-child(9) {
    transition-delay: 0.5s;
}

/* Responsive Menu */
@media (max-width: 900px) {
    .menu-cols {
        flex-direction: column;
    }

    .menu-left-img {
        display: none;
        /* Hide image on mobile to save space */
    }

    .menu-right-links {
        padding: 2rem;
        justify-content: flex-start;
        padding-top: 100px;
    }
}

.col-left {
    justify-content: space-between;
    padding-bottom: 4rem;
    padding-top: 4rem;
}

.section-top-text {
    font-family: var(--nav-font);
    font-size: 3.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    color: #000000;
    /* Black Text */
    margin-bottom: 0;
}

.col-center {
    align-items: center;
    justify-content: center;
}

.col-right {
    justify-content: space-between;
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.taste-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taste-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Lighter shadow for white bg */
    transition: transform 0.5s ease;
}

.taste-img-wrapper img:hover {
    transform: scale(1.02);
}

.img-small {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

.img-large {
    width: 100%;
    height: 90%;
}

.img-medium {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

.taste-content {
    text-align: right;
    margin-top: auto;
    padding-top: 2rem;
}

.taste-heading {
    font-family: var(--nav-font);
    color: #000000;
    /* Black Text */
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.taste-subheading {
    font-family: var(--desc-font);
    font-style: italic;
    font-size: 0.9rem;
    color: #333333;
    /* Dark Grey for subtitle */
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.8;
    font-weight: 400;
}

/* Intro */
.intro-section {
    padding: 6rem 0;
    text-align: center;
}

.intro-text {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-style: italic;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Sense Sections (Legacy) */
.sense-section {
    padding: 5rem 0;
}

.sense-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.reverse .sense-grid {
    flex-direction: row-reverse;
}

.sense-text {
    flex: 1;
    padding: 2rem;
}

.sense-image {
    flex: 1;
    overflow: hidden;
}

.sense-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sense-section:hover .sense-image img {
    transform: scale(1.05);
}

.sense-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 1rem;
}

.sense-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    margin-bottom: 2rem;
}

.sense-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.text-link {
    font-family: var(--primary-font);
    font-style: italic;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

.text-link:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.footer-col p,
.social-links a {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a:hover {
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.2;
    text-transform: uppercase;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-pages-split {
    display: flex;
    gap: 3rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Mobile menu TODO */
    }

    .hamburger {
        display: block;
        width: 30px;
    }

    .hamburger span {
        display: block;
        height: 2px;
        background-color: currentColor;
        margin-bottom: 6px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .sense-grid,
    .reverse .sense-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Contact Layout Section */
.contact-layout-section {
    background-color: #f8f5f2;
    padding: 6rem 0;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 15% 40% 45%;
    max-width: 1400px;
    margin: 0 auto;
    height: auto;
    min-height: 80vh;
    align-items: stretch;
}

/* Left Column */
.contact-left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 0;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--nav-font);
    font-size: 8rem;
    letter-spacing: 15px;
    color: #000;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    white-space: nowrap;
    line-height: 1;
}

/* Center Column */
.contact-center {
    display: flex;
    flex-direction: column;
    padding: 0 3rem;
    justify-content: flex-start;
}

.contact-img-top {
    width: 100%;
    height: 400px;
    margin-bottom: 4rem;
    overflow: hidden;
}

.contact-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-block {
    text-align: center;
    padding-bottom: 2rem;
}

.contact-heading {
    font-family: var(--nav-font);
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 400;
}

.info-divider {
    width: 40px;
    height: 1px;
    background-color: #000;
    margin: 0 auto 2rem;
}

.info-group {
    margin-bottom: 2rem;
    font-family: var(--nav-font);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    line-height: 2;
}

.info-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

/* Right Column */
.contact-right {
    /* Background removed per request */
    position: relative;
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: flex-end;
    /* Align items to the right */
    justify-content: center;
    padding: 2rem;
    /* Reduced padding to give image more space */
}

.contact-illustration {
    width: 100%;
    /* Increased size */
    height: auto;
    /* Center the image within the column despite parent's align-items: flex-end */
    align-self: center;
}

.contact-illustration img {
    width: 100%;
    height: auto;
    display: block;
    /* mix-blend-mode removed for photo quality */
}

.contact-socials {
    position: relative;
    /* Static positioning in flow */
    top: auto;
    right: auto;
    display: flex;
    gap: 1.5rem;
    z-index: 10;
    margin-bottom: 1rem;
    /* Space between icons and image */
    width: 100%;
    justify-content: flex-end;
    /* Push icons to right */
}

.contact-socials img {
    opacity: 0.8;
    transition: opacity 0.3s;
    cursor: pointer;
}

.contact-socials img:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 4rem;
        padding: 2rem 0;
        letter-spacing: 5px;
    }

    .contact-left {
        border-bottom: 1px solid #eee;
    }

    .contact-center {
        padding: 4rem 2rem;
    }

    .contact-right {
        min-height: 400px;
    }
}


/* Contact Form Styles */
.contact-form-wrapper {
    padding: 2rem 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.clean-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    position: relative;
}

.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 0.8rem 0;
    font-family: var(--body-font);
    font-size: 0.9rem;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-bottom-color: var(--accent-color);
}

.form-input::placeholder {
    color: #999;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.form-submit {
    margin-top: 1rem;
    width: auto;
    cursor: pointer;
    border: none;
    align-self: flex-start;
}

.text-link-btn {
    background: transparent;
    font-family: var(--nav-font);
    /* Using nav-font as primary-font might be undefined or specific */
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 1px solid #c0a062;
    padding: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.text-link-btn:hover {
    color: #c0a062;
}

/* Update Vertical Text Font */
.vertical-text.section-title-font {
    font-family: var(--nav-font) !important;
    font-weight: 200 !important;
    /* Ensure light weight */
    font-size: 6rem;
    /* Slightly reduced from 8rem for cleaner look */
    letter-spacing: 10px;
    color: #333;
}

.hero-corner-img {
    position: absolute;
    top: 100px;
    /* Below navbar initially */
    left: 40px;
    width: 150px;
    height: auto;
    z-index: 20;
    opacity: 0.9;
    animation: floatBird 6s ease-in-out infinite;
}

@keyframes floatBird {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.nav-bird-icon {
    width: 50px;
    height: auto;
    margin-right: 15px;
    /* transform removed per user request */
}

.nav-left {
    align-items: center;
    /* Vertically center image with text */
}

/* =========================================
   Mobile Responsive Styles (Consolidated)
   ========================================= */

@media (max-width: 900px) {

    /* General Container Padding */
    .container {
        padding: 0 1.5rem;
    }

    /* 1. Taste Section (Let Yourself) */
    .taste-gallery-section {
        height: auto;
        min-height: auto;
        padding-bottom: 4rem;
        display: block;
    }

    .taste-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 1rem 0;
        /* Reduced side padding */
        height: auto;
    }

    .col-left,
    .col-center,
    .col-right {
        padding: 0;
        width: 100%;
        display: block;
    }

    .taste-col {
        margin-bottom: 2rem;
    }

    .taste-img-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .img-large {
        height: 300px;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .taste-content {
        text-align: center;
        padding-top: 2rem;
    }

    /* 2. Sense Section (Deluxe Room) */
    .sense-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .sense-text {
        padding: 0;
        text-align: center;
    }

    .sense-title {
        font-size: 2rem;
    }

    .divider {
        margin: 1.5rem auto;
        /* Center divider */
    }

    /* 3. Coffee Lounge (Split Section) */
    .split-section {
        flex-direction: column;
        height: auto;
    }

    .split-image-slider {
        height: 40vh;
        /* Visible height for slider */
    }

    .split-content {
        padding: 4rem 1.5rem;
        text-align: center;
    }

    .content-box {
        padding: 0;
    }

    .split-title {
        font-size: 2.5rem;
    }

    /* 4. Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    /* Vertical Text Reset */
    .vertical-text,
    .vertical-text.section-title-font {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 3rem !important;
        letter-spacing: 5px;
        text-align: center;
        width: 100%;
        padding: 2rem 0;
        white-space: normal;
        line-height: 1.1;
    }

    .contact-left {
        border-bottom: 1px solid #ddd;
        padding: 2rem 0;
    }

    .contact-center {
        padding: 3rem 1.5rem;
    }

    .contact-right {
        padding: 2rem;
        align-items: center;
        /* Center content */
    }

    .contact-socials {
        justify-content: center;
        /* Center icons */
        margin-bottom: 2rem;
    }

    /* 5. Footer Split */
    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-pages-split {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

@media (max-width: 600px) {

    /* Hero Section */
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-content-wrapper {
        justify-content: center;
        padding-right: 0;
        align-items: center;
    }

    .hero-text-group {
        text-align: center;
        padding: 0 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Navbar Mobile Adjustments */
    .nav-left .nav-link-text {
        display: none;
    }

    .logo-main {
        font-size: 0.9rem;
        /* Prevent overflow */
        letter-spacing: 2px;
    }

    .nav-content {
        justify-content: center;
        position: relative;
    }

    .nav-left {
        position: absolute;
        left: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
    }

    .nav-right {
        position: absolute;
        right: 1.5rem;
        /* Moved left per user request */
        top: 50%;
        transform: translateY(-50%);
        width: auto;
    }

    /* Experience Section (Highlights) */
    .highlights-section {
        padding: 4rem 0;
        overflow: visible;
        position: relative;
        z-index: 5;
        background-color: #f8f5f2;
    }

    .unique-highlights-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .section-top-text {
        color: #333 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        position: relative;
        z-index: 10;
        margin-top: 1rem;
        margin-bottom: 5rem;
        font-size: 2.5rem !important;
        font-weight: 500 !important;
        /* Adjusted for better mobile fit */
        line-height: 1.1;
        text-align: center;
    }

    .highlights-section .container {
        position: relative;
        z-index: 10;
    }

    /* Wellness Grid 1 Column (Redundant with wellness.css but safe) */
    .wellness-grid {
        grid-template-columns: 1fr;
    }

    /* Adjust infinity slider slide width */
    .slide {
        width: 80vw;
        /* Responsive width */
        height: 40vh;
    }

    .slider-track {
        width: calc(80vw * 16);
        /* Update track width calc */
        animation: scrollMobile 40s linear infinite;
    }
}

@keyframes scrollMobile {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-80vw * 8));
    }
}