:root {
    /* Brand Colors */
    --deep-green: #2D3E31; /* Derived from "Deep Green" */
    --light-sage: #D9E0D6; /* Derived from "Light Sage" */
    --pale-blush: #F2ECE9; /* Derived from "Pale Blush" */
    --terracotta: #C67C5F; /* Derived from "Terracotta" accent */
    
    /* Neutrals */
    --off-white: #FCFAFA;
    --dark-charcoal: #1A1A1A;
    --pure-black: #000000;
    --pure-white: #FFFFFF;

    /* Typography */
    --font-headline: 'Tenor Sans', sans-serif;
    --font-body: 'Gilroy', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-s: 1rem;
    --space-m: 2rem;
    --space-l: 4rem;
    --space-xl: 8rem;
    --space-xxl: 12rem;

    /* Transitions */
    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-med: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@font-face {
    font-family: 'Tenor Sans';
    src: url('../fonts/TenorSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--pale-blush);
    color: var(--deep-green);
    line-height: 1.6;
    height: 100%;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#ps-root {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Perfect Scrollbar styling */
#ps-root > .ps__rail-y {
    display: block !important;
    width: 6px !important;
    right: 4px !important;
    z-index: 999 !important;
    background: transparent !important;
    opacity: 1 !important;
}

#ps-root > .ps__rail-y .ps__thumb-y {
    width: 6px !important;
    right: 0 !important;
    border-radius: 999px !important;
    background-color: rgba(138, 158, 145, 0.78) !important;
}

#ps-root > .ps__rail-y:hover .ps__thumb-y,
#ps-root > .ps__rail-y:focus .ps__thumb-y,
#ps-root > .ps__rail-y.ps--clicking .ps__thumb-y {
    background-color: rgba(168, 186, 174, 0.9) !important;
}

#ps-root > .ps__rail-x {
    display: none !important;
}

/* Typography Scale */
h1, h2, h3, h4 {
    font-family: var(--font-headline);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.05em;
}

h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-m);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: var(--space-m);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-s);
}

p {
    font-size: 1rem;
    max-width: 60ch;
    opacity: 0.9;
}

.label {
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    display: block;
    margin-bottom: var(--space-s);
}

/* Layout Utilities */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-m);
}

section {
    padding: var(--space-xl) 0;
}

.grid {
    display: grid;
    gap: var(--space-l);
}

.flex {
    display: flex;
    gap: var(--space-m);
}

/* Specific UI Elements */
.button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    text-decoration: none;
    border: 1px solid var(--deep-green);
    color: var(--deep-green);
    transition: var(--transition-med);
    cursor: pointer;
    background: transparent;
}

.button:hover {
    background-color: var(--deep-green);
    color: var(--pale-blush);
}

.button.primary {
    background-color: var(--deep-green);
    color: var(--pale-blush);
}

.button.primary:hover {
    background-color: transparent;
    color: var(--deep-green);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-s) 0;
    background-color: rgba(45, 62, 49, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-med);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-m);
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: var(--pale-blush);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    transition: var(--transition-med);
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-cta {
    border-color: var(--pale-blush);
    color: var(--pale-blush);
    padding: 0.75rem 2rem;
}

.nav-cta:hover {
    background-color: var(--pale-blush);
    color: var(--deep-green);
    opacity: 1 !important;
}

.nav-links a:hover {
    opacity: 0.6;
}

.logo-container img {
    height: 32px;
    width: auto;
    transition: var(--transition-med);
    display: block;
    filter: brightness(0) invert(1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    padding: 0;
    background-color: var(--deep-green);
    color: var(--pale-blush);
    overflow: hidden;
    text-align: center;
    z-index: 1; /* Ensure hero is below omakase-hero */
    will-change: transform;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 62, 49, 0.1), rgba(45, 62, 49, 0.05));
    z-index: 1;
    pointer-events: none;
}

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

.hero-pattern-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-rows: repeat(3, 1fr);
    opacity: 1; /* Container is opaque, items are 0.03 */
    pointer-events: none;
    overflow: hidden;
}

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

.pattern-item {
    filter: brightness(1.2);
    pointer-events: none;
    cursor: default;
    position: relative; /* Container for absolute plate images */
    overflow: hidden;
}

.pattern-item .logo-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: auto;
    opacity: 0.03;
    filter: brightness(0) invert(1);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .pattern-item .logo-mark {
        width: 100px;
    }
}

.plate-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 250px; /* Match logo size for a cleaner swap */
    height: auto;
    opacity: 0;
    pointer-events: auto;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)) drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

@media (max-width: 768px) {
    .plate-image {
        width: 125px;
    }
}

.pattern-item.show-plate .logo-mark {
    opacity: 0; /* Hide logo completely when plate appears */
}

.pattern-item.show-plate .plate-image {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
}

.hero .label {
    color: var(--terracotta);
    margin-bottom: var(--space-m);
}

.hero-logo-large {
    margin-bottom: var(--space-m);
    display: flex;
    justify-content: center;
}

.hero-logo-large img {
    max-width: 2000px;
    width: 120%;
    height: auto;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-logo-large img {
        width: 100%;
        max-width: 100%;
    }
}

.hero-description {
    font-family: var(--font-headline);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-l);
    color: var(--pale-blush);
    opacity: 0.8;
    max-width: none !important;
}

.hero p {
    margin: 0 auto var(--space-l);
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    max-width: 40ch;
}

/* Visual Immersion Section Refined */
.visual-immersion {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--pure-black); /* Set black to blend with the fish image */
    padding: var(--space-xl) 0;
}

.immersion-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.immersion-text {
    max-width: 500px;
    color: var(--pale-blush);
    padding-left: clamp(0.75rem, 2vw, 3.5rem);
}

.immersion-text h2 {
    color: var(--pure-white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: calc(var(--space-m) * 1.25);
    line-height: 1.14;
}

.immersion-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.8;
}

.immersion-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.immersion-fish {
    max-width: 115%;
    height: auto;
    object-fit: contain;
    transform-origin: right center;
    transition: transform var(--transition-slow);
    margin-right: 0%; /* Keep subtle tension without colliding with headline */
    will-change: transform;
}

.visual-immersion:hover .immersion-fish {
    transform: scale(1.15) translateX(10px); /* Increased from 1.05 to make it larger on hover */
}

.immersion-bg-image {
    position: absolute;
    top: 0;
    left: -10%; /* Extra width for horizontal parallax */
    width: 120%; /* 100% + 20% buffer */
    height: 200px;
    object-fit: cover;
    object-position: 50% 50%;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
    will-change: object-position;
}

@media (max-width: 992px) {
    .immersion-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: var(--space-l);
    }
    
    .immersion-text {
        max-width: none;
        padding-left: 0;
    }
    
    .immersion-image-wrapper {
        width: 100%;
        justify-content: center;
    }
    
    .immersion-fish {
        max-width: 112.5%;
        transform-origin: center center;
        margin-right: 0; /* Reset for mobile centered layout */
    }
    
    .visual-immersion:hover .immersion-fish {
        transform: scale(1.02) translateX(0); /* Reset horizontal transform for mobile */
    }
}

/* Omakase Hero Section */
.omakase-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: visible; /* Allow section to overlap hero */
    background-color: var(--pure-black);
    color: var(--pure-white);
    z-index: 5; /* Ensure it stays above the hero */
    will-change: transform;
}

@media (max-width: 768px) {
    .omakase-hero {
        height: auto;
        padding: var(--space-xl) 0;
    }
}
 
.omakase-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 66.66%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    -webkit-mask-image: radial-gradient(circle at 40% 50%, black 20%, transparent 80%);
    mask-image: radial-gradient(circle at 40% 50%, black 20%, transparent 80%);
}

@media (max-width: 768px) {
    .omakase-bg-image {
        width: 100%;
        left: 0;
        height: 100%;
        -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 90%);
        mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 90%);
        opacity: 0.5;
    }
}

.omakase-content {
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

@media (max-width: 768px) {
    .omakase-content {
        justify-content: center;
    }
}

.omakase-text {
    max-width: 450px;
    text-align: right;
}

@media (max-width: 768px) {
    .omakase-text {
        text-align: center;
        max-width: none;
    }
}

.omakase-text h2 {
    color: var(--pure-white);
    margin-top: var(--space-s);
}

/* Colorado Story Section */
.colorado-story {
    background-color: var(--pure-black);
    color: var(--pure-white);
    padding: var(--space-l) 0;
    position: relative;
    overflow: hidden;
    z-index: 7;
}

.colorado-story::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/colorado/Boulder.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}

.colorado-story::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    pointer-events: none;
    z-index: 1;
}

.colorado-story-content {
    display: grid;
    grid-template-columns: 1fr minmax(360px, 44%);
    gap: var(--space-l);
    align-items: center;
    position: relative;
    z-index: 2;
}

.colorado-story-text h2 {
    max-width: 450px;
    font-size: 1.56rem;
    color: var(--pure-white);
    margin-top: var(--space-s);
}

.colorado-story-text {
    text-align: left;
}

.colorado-story-text strong {
    font-weight: 700;
}

.colorado-story-images {
    justify-self: end;
    width: min(100%, 680px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 110px;
    gap: 0.5rem;
}

.colorado-story-images::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: none;
    z-index: 2;
}

.colorado-story-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.08);
    z-index: 1;
}

.colorado-story-images img:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.colorado-story-images img:nth-child(5) {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .colorado-story-content {
        grid-template-columns: 1fr;
        gap: var(--space-m);
    }

    .colorado-story-text h2 {
        max-width: 450px;
    }

    .colorado-story-images {
        justify-self: stretch;
        width: 100%;
        grid-auto-rows: 100px;
    }
}

@media (max-width: 768px) {
    .colorado-story {
        padding: var(--space-m) 0;
    }

    .colorado-story-text {
        text-align: center;
    }

    .colorado-story-text h2 {
        max-width: none;
    }

    .colorado-story-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 100px;
    }
}

/* Sushi Highlight Section */
.sushi-highlight {
    background-color: var(--pure-black);
    color: var(--pure-white);
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
    z-index: 6; /* Stay above the parallaxed omakase section */
}

.highlight-content {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-text h2 {
    color: var(--pure-white);
    margin-top: var(--space-s);
}

.highlight-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.sushi-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .sushi-slider {
        aspect-ratio: 4 / 3;
    }
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    pointer-events: none;
}

.slider-image.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.slider-image.slide-out-left {
    opacity: 0;
    transform: translateX(-100%);
}

.slider-image.slide-out-right {
    opacity: 0;
    transform: translateX(100%);
}

.slider-image.slide-in-left {
    transform: translateX(-100%);
}

.slider-image.slide-in-right {
    transform: translateX(100%);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-med);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--pure-white);
    color: var(--pure-black);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    opacity: 0.3;
}

.slider-arrow.prev {
    left: var(--space-s);
}

.slider-arrow.next {
    right: var(--space-s);
}

/* Menu Showcase */
.menu-showcase {
    background: var(--pure-black);
    color: var(--pure-white);
    padding-top: 0;
}

.menu-showcase-header {
    margin-bottom: var(--space-xl);
}

.menu-showcase-header p {
    margin: 0 auto;
}

.menu-showcase-list {
    display: grid;
    gap: var(--space-l);
}

.menu-showcase-row {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
}

.menu-showcase-row.reverse .menu-showcase-plate {
    order: 2;
}

.menu-showcase-row.reverse .menu-showcase-copy {
    order: 1;
    text-align: right;
    margin-left: auto;
}

.menu-showcase-plate {
    display: flex;
    justify-content: center;
}

.menu-showcase-plate img {
    width: min(100%, 520px);
    height: auto;
    display: block;
    filter: drop-shadow(0 26px 36px rgba(45, 62, 49, 0.18));
    transform-origin: center center;
    will-change: transform;
}

.menu-showcase-copy {
    max-width: 480px;
}

.menu-showcase-copy h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-top: var(--space-s);
    margin-bottom: var(--space-s);
    color: var(--pure-white);
}

.menu-showcase-copy p {
    color: var(--pure-white);
    opacity: 0.9;
    margin-bottom: 0;
}

.menu-showcase-items {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
}

.menu-showcase-items li {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(45, 62, 49, 0.12);
    font-size: 0.98rem;
    letter-spacing: 0.03em;
}

/* Crafted Favorites */
.crafted-favorites {
    background-color: var(--off-white);
    color: var(--deep-green);
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-l);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--deep-green);
    margin-bottom: var(--space-s);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-s);
    margin-bottom: var(--space-l);
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(45, 62, 49, 0.1);
    color: var(--deep-green);
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-med);
}

.tab-btn.active, .tab-btn:hover {
    border-color: var(--deep-green);
    color: var(--deep-green);
}

.menu-grid {
    display: grid;
    gap: 0;
}

.menu-item, .menu-item.alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.menu-item .menu-item-info {
    order: 2;
}

.menu-item .menu-item-image {
    order: 1;
}

.menu-item.alt .menu-item-info {
    order: 1;
}

.menu-item.alt .menu-item-image {
    order: 2;
}

@media (max-width: 768px) {
    .menu-item, .menu-item.alt {
        grid-template-columns: 1fr;
    }
    
    .menu-item .menu-item-info, .menu-item.alt .menu-item-info {
        order: 2;
    }
    
    .menu-item .menu-item-image, .menu-item.alt .menu-item-image {
        order: 1;
    }
}

.menu-item-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-info {
    padding: var(--space-l);
}

.menu-item-info h3 {
    font-size: 1.75rem;
    color: var(--deep-green);
    margin-bottom: var(--space-s);
    text-transform: none;
}

.menu-item-info p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: var(--space-s);
}

.menu-item-info .price {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--deep-green);
}

.full-width-image {
    height: 60vh;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Signature Picks */
.signature-picks {
    background-color: var(--pale-blush);
    color: var(--deep-green);
    padding: var(--space-xl) 0;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-m);
}

.signature-card {
    background: rgba(45, 62, 49, 0.02);
    border: 1px solid rgba(45, 62, 49, 0.05);
    transition: var(--transition-med);
}

.signature-card:hover {
    transform: translateY(-10px);
    border-color: var(--deep-green);
}

.sig-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.sig-content {
    padding: var(--space-m);
}

.sig-content h3 {
    color: var(--deep-green);
    margin-bottom: var(--space-xs);
    text-transform: none;
    font-size: 1.25rem;
}

.sig-content .rating {
    color: var(--terracotta);
    margin: var(--space-xs) 0;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.btn-text {
    display: inline-block;
    color: var(--deep-green);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-top: var(--space-s);
    font-weight: 600;
}

/* Exclusive Dining */
.exclusive-dining {
    background-color: var(--light-sage);
    color: var(--deep-green);
    padding: var(--space-xl) 0;
}

.exclusive-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.exclusive-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.exclusive-item.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.exclusive-visuals {
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    gap: var(--space-s);
}

.vis-main {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.vis-thumbs {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.vis-thumbs img {
    aspect-ratio: 1;
    object-fit: cover;
}

.exclusive-info {
    padding: var(--space-l);
}

.info-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--space-m);
    border-bottom: 1px solid rgba(45, 62, 49, 0.1);
    padding-bottom: var(--space-s);
}

.exclusive-info h3 {
    font-size: 2rem;
    color: var(--deep-green);
    margin: 0;
    text-transform: none;
}

.exclusive-info .price {
    font-family: var(--font-headline);
    font-size: 2rem;
}

.features {
    list-style: none;
    margin-bottom: var(--space-l);
}

.features li {
    margin-bottom: var(--space-xs);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    opacity: 0.9;
}

.features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--deep-green);
}

/* Our Story */
.our-story {
    background-color: var(--pale-blush);
    color: var(--deep-green);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.video-placeholder {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--deep-green);
}

.play-btn span {
    font-size: 1.5rem;
    margin-left: 5px;
    color: var(--deep-green);
}

.story-side-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-l);
}

.story-images {
    display: flex;
    gap: var(--space-s);
}

.story-images img {
    width: 50%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.story-text h3 {
    font-size: 1.75rem;
    color: var(--deep-green);
    margin-bottom: var(--space-m);
}

/* Atmosphere */
.atmosphere {
    background-color: var(--pale-blush);
    padding: 0;
}

.atmosphere-image-full img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

/* Reservations Section Update */
.reservations {
    background-color: var(--deep-green);
    color: var(--pale-blush);
    text-align: center;
    padding: var(--space-xxl) 0;
    position: relative;
}

.reservations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern/single-logo.svg');
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
}

.res-content {
    position: relative;
    z-index: 1;
}

/* Footer Update */
footer, .footer {
    padding: var(--space-xl) 0 var(--space-m);
    background-color: var(--pure-black);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

footer::before, .footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/pattern/single-logo-extra-spaced.svg");
    background-repeat: repeat;
    background-position: center;
    background-size: 120px auto;
    opacity: 0.015;
    pointer-events: none;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-l);
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: var(--space-m);
    filter: invert(1);
}

.footer-info p {
    margin-top: var(--space-m);
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: var(--space-s);
    margin-top: var(--space-m);
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition-med);
    opacity: 0.7;
}

.social-icons a svg {
    width: 16px;
    height: 16px;
}

.social-icons a:hover {
    background: var(--pure-white);
    color: var(--pure-black);
    opacity: 1;
}

.footer-col h4 {
    color: var(--light-sage);
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: var(--space-m);
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--space-s);
}

.footer-col a {
    text-decoration: none;
    color: var(--pure-white);
    font-size: 0.95rem;
    transition: var(--transition-med);
    opacity: 0.7;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-m);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-legal {
    display: flex;
    gap: var(--space-m);
}

.footer-legal a {
    color: var(--pure-white);
    text-decoration: none;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-s);
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .menu-showcase-row,
    .menu-showcase-row.reverse {
        grid-template-columns: 1fr;
        gap: var(--space-m);
    }

    .menu-showcase-row.reverse .menu-showcase-plate,
    .menu-showcase-row.reverse .menu-showcase-copy {
        order: initial;
    }

    .menu-showcase-copy,
    .menu-showcase-row.reverse .menu-showcase-copy {
        max-width: none;
        text-align: center;
        margin-left: 0;
    }

    .exclusive-item, .exclusive-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .exclusive-visuals {
        grid-template-columns: 1fr;
    }
    
    .vis-thumbs {
        flex-direction: row;
    }

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

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

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-xxl: 6rem;
    }

    .nav-links, .nav-cta-container {
        display: none;
    }

    .atmosphere-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .item-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 1;
    }

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