@font-face {
    font-family: 'NCL Gasdrifo';
    src: url('NCLGASDRIFO-DEMO.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ROOT AND THEME VARIABLES (Dark Theme) */
:root {
    --primary-color: #FAF8F5;
    --bg-darkest: #0d0d0d;
    --bg-darker: #121212;
    --bg-card: #181818;
    --text-main: #FFFFFF;
    --text-muted: #BBBBBB;
    --text-accent: #DAA520;
    --font-heading: 'NCL Gasdrifo', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.7s cubic-bezier(0.5, 0, 0, 1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 35px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-card) 100%);
    color: var(--text-main);
    line-height: 1.8;
    letter-spacing: 0.01rem;
    position: relative;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05rem;
    line-height: 1.2;
}

/* Subtle Grain Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
    /* Promote to own layer — no repaints on scroll */
    will-change: transform;
    transform: translateZ(0);
}

/* ── Global Performance Foundation ──────────────────────────
   GPU compositing + layout containment + iOS momentum scroll
   ─────────────────────────────────────────────────────────── */

/* Smooth momentum scrolling on iOS Safari */
html {
    -webkit-overflow-scrolling: touch;
    /* Native smooth scroll (overrides JS where not needed) */
    scroll-behavior: smooth;
}

/* Safe containment: style only
   contain:paint clips overflow (breaks overlap images), contain:layout breaks offsetTop.
   contain:style is the only safe option here. */
section,
.section-padding {
    contain: style;
}

/* Promote nav to its own GPU layer — stays silky on scroll  */
nav {
    will-change: transform, background-color, width, top, border-radius;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Hero background: GPU layer for parallax without jank      */
.hero-zoom-bg,
.hero-bg-container {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Gallery horizontal slider: composited layer               */
.horizontal-slider,
#horizontal-slider {
    will-change: transform;
    transform: translateZ(0);
}

/* Preloader: GPU composited                                 */
#preloader {
    will-change: opacity;
    transform: translateZ(0);
}

/* Reveal animations: prep the GPU layer before animating    */
.reveal {
    will-change: opacity, transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Cards: promote on hover only (not all at once)            */
.menu-card,
.category-card,
.value-card,
.journey-card,
.gallery-h-item,
.event-card {
    will-change: transform;
    transform: translateZ(0);
}

/* Menu item glass cards hover — GPU accelerated             */
.menu-item {
    will-change: transform, background-color, box-shadow;
}

/* FAB WhatsApp: its own tiny layer                          */
.fab-whatsapp {
    will-change: transform;
    transform: translateZ(0);
}

/* Images: crisp rendering + lazy load optimisation          */
img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Slideshow images in About hero                           */
.slideshow-img,
.hero-zoom-bg {
    will-change: transform, opacity;
    transform-style: flat;
}

/* Disable will-change after animations complete (memory)    */
.reveal.active {
    will-change: auto;
}

/* Mobile: drop expensive effects that cause repaints        */
@media (max-width: 768px) {
    /* Disable grain texture on mobile — heavy repaint cost  */
    body::before { display: none; }
    /* Disable parallax attachment (causes scroll jank)       */
    #about,
    .journey-section { background-attachment: scroll !important; }
    /* Disable blurs on mobile — GPU intensive               */
    nav { backdrop-filter: none; -webkit-backdrop-filter: none; }
}

.bg-darker {
    background-color: var(--bg-darker);
}

.bg-darkest {
    background-color: var(--bg-darkest);
}

.text-light {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 2rem;
}

.accent-text {
    color: var(--text-accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Aesthetic Preloader Logic (Fixed Mobile Centering) */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-darkest);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

.loader-content {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.loader-img {
    width: 140px;
    border-radius: 50%;
    animation: seedPulse 2.5s infinite ease-in-out;
}



@keyframes seedPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.section-title {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
    margin-bottom: 1rem;
    color: var(--text-main);
    text-align: left;
    letter-spacing: 0.08rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 0 5rem 0;
    text-align: left;
    line-height: 1.8;
    font-weight: 300;
}

/* --- Fixed Navbar with Logo Text Stack --- */
nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1600px;
    padding: 16px 40px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(18, 18, 18, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    will-change: transform, top, background;
}

nav.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 12px 0;
    background: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

nav.scrolled .nav-container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo-img {
    height: 60px;
    transition: var(--transition);
    border-radius: 50%;
}

nav.scrolled .nav-logo-img {
    height: 50px;
}

.logo-text-stack {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-main);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05rem;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    opacity: 0.7;
    position: relative;
    padding: 5px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--text-accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.mobile-menu-btn {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-darkest);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px; /* Space for close button */
    transform: translateX(100%);
    transition: transform 0.5s ease-out;
}

.mobile-sidebar.active { transform: translateX(0); }

.sidebar-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.sidebar-links {
    list-style: none;
    text-align: center;
}

.sidebar-links a {
    text-decoration: none;
    color: #fff;
    font-size: 2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
}

/* --- Hero Section --- */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-zoom-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s linear;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 8vw, 4.2rem);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.08rem;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 300;
    opacity: 0.75;
    margin-bottom: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-101%);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--text-accent);
    color: #000;
    border: 1px solid var(--text-accent);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
}

.btn-primary:hover {
    background: var(--text-accent);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* --- General Layout --- */
.section-padding {
    padding: 160px 0;
    position: relative;
}

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

#about {
    background-image: linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.7)), url('images/ourstorytexture.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    line-height: 0;
}

.slideshow-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: crossfade 10s infinite, constantZoom 15s ease-in-out infinite alternate;
    filter: sepia(0.15) saturate(1.25) brightness(1.05) contrast(1.1);
}

.slideshow-img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.slideshow-img:first-child {
    position: relative;
    opacity: 1;
}

.slideshow-img:nth-child(1) { animation-delay: 0s, 0s; }
.slideshow-img:nth-child(2) { animation-delay: 5s, -7.5s; }

@keyframes crossfade {
    0%, 45%, 100% { opacity: 1; }
    50%, 95% { opacity: 0; }
}

@keyframes constantZoom {
    0% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.about-text-column p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-highlight {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    color: var(--text-accent);
    font-size: 1.25rem;
    font-style: italic;
    letter-spacing: 1px;
}

/* --- Menu Grid of Cards --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.menu-card {
    --bg: var(--bg-card);
    --contrast: rgba(255,255,255,0.03);
    --grey: var(--text-muted);
    position: relative;
    padding: 12px;
    background-color: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: rgba(218, 165, 32, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.card-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-conic-gradient(var(--bg) 0.0000001%, var(--grey) 0.000104%) 60% 60%/600% 600%;
    filter: opacity(10%) contrast(105%);
    z-index: 1;
}

.card-inner {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: var(--contrast);
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.menu-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}

.menu-card-details {
    padding: 30px;
    flex: 1;
}

.menu-card-details h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.menu-card-details .price {
    font-size: 1.5rem;
    color: var(--text-accent);
    font-family: var(--font-heading);
    font-weight: 600;
}

/* --- View All Menu Button --- */
.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 45px;
    background: var(--text-accent); /* Highlighting with Gold */
    border: 1px solid var(--text-accent);
    border-radius: 40px; /* Matchingpill-shape of other buttons */
    color: #000; /* Contrast text */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
}

.view-all-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

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

/* --- Horizontal Scroll Gallery --- */
.gallery-horizontal-wrapper {
    height: 600vh;
    position: relative;
    background: #0d0d0d;
}

.sticky-gallery {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.gallery-titles-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.gallery-titles-wrap .section-title {
    font-size: clamp(6rem, 15vw, 12rem);
    opacity: 0.03;
    color: #fff;
    white-space: nowrap;
    user-select: none;
}

.horizontal-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.horizontal-slider {
    display: flex;
    gap: 30px;
    padding: 0 10% 0 5%;
    will-change: transform;
}

.gallery-h-item {
    min-width: 450px;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-h-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-h-item:hover {
    transform: scale(1.02);
}

/* --- Journey Visual Feed --- */
.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.journey-card {
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.journey-card img, .journey-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Menu Page Specifics --- */
.menu-page {
    padding-top: 100px;
}

#category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.category-card {
    height: 280px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--text-accent);
    box-shadow: var(--shadow-deep);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: 0.8s ease;
}

.category-card:hover img {
    opacity: 0.6;
    transform: scale(1.1);
}

.category-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    text-align: center;
    padding: 20px;
}

.category-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
}

.category-info p {
    color: var(--text-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

#menu-view {
    max-width: 900px;
    margin: 0 auto;
}

.menu-view-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.back-to-cats {
    background: transparent;
    border: none;
    color: var(--text-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.back-to-cats:hover {
    color: #fff;
    transform: translateX(-5px);
}

.header-title-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-cat-img-wrap {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.menu-items-container {
    list-style: none;
    padding: 0;
}

.menu-item {
    padding: 35px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.item-name-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-main);
}

.diet-indicator {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.diet-veg {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.diet-nonveg {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.diet-hybrid {
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.item-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-accent);
}

.item-desc {
    color: var(--text-muted);
    font-weight: 300;
    max-width: 80%;
    line-height: 1.6;
}

.reveal {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-up { transform: translateY(60px) scale(0.98); }
.reveal-left { transform: translateX(-100px) scale(0.98); }
.reveal-right { transform: translateX(100px) scale(0.98); }
.reveal-blur { 
    opacity: 0; 
    filter: blur(20px); 
    transform: translateY(30px) scale(0.98);
    transition: opacity 1.5s cubic-bezier(0.2, 1, 0.3, 1), transform 1.5s cubic-bezier(0.2, 1, 0.3, 1), filter 1.5s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

.active {
    opacity: 1;
    transform: translate(0, 0) rotate(0) scale(1);
    filter: blur(0);
}

/* Artifical Transitions logic for staggers */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- Genesis Section (Mood) --- */
.genesis-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.genesis-text-wrap {
    padding-left: 40px;
}

.genesis-text-wrap .story-para {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin: 25px 0 45px;
    font-weight: 300;
}

.genesis-visual-wrap { 
    position: relative; 
    padding: 60px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlap-img-base {
    width: 80%;
    height: 550px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.overlap-img-base img, .overlap-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlap-img-top {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    border: 10px solid var(--bg-card);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.genesis-visual-wrap:hover .overlap-img-top {
    transform: translateY(-20px) translateX(-10px);
}

/* --- Google Reviews Section (Trustindex Widget) --- */
.reviews-widget-container {
    min-height: 250px; /* Placeholder height to prevent layout shift */
    width: 100%;
    padding: 20px 0;
}

/* Ensure the widget blends with the dark theme if the widget itself doesn't have its own theme */
.reviews-widget-container iframe {
    border-radius: var(--radius-md) !important;
}

/* --- Footer --- */
footer {
    background: #080808;
    color: #888;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important; /* Forces remove underline */
    color: var(--text-main);
    margin-bottom: 25px;
    display: flex;
}

.footer-logo-img { 
    height: 50px; 
    width: 50px;
    object-fit: cover;
    border-radius: 50%; 
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-main);
}

.footer-heading {
    color: var(--text-main);
    font-size: 1.15rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #888; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--text-accent); padding-left: 5px; }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* WhatsApp FAB */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-whatsapp:hover { transform: scale(1.1) translateY(-5px); }

/* --- About Us Page Cinematic Styles --- */
.about-hero-cinematic {
    height: 85vh;
    background: url('images/ourstory.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    padding-left: 5%;
}

.about-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--text-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero-cinematic h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-hero-cinematic p {
    font-size: 1.25rem;
    max-width: 500px;
    color: var(--text-muted);
    font-weight: 300;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content {
    margin-top: 40px;
}

.story-para {
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-weight: 300;
}

/* Premium Story Block Styles */
.premium-story-block {
    padding: 20px 0;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.premium-divider {
    width: 60px;
    height: 1px;
    background: var(--text-accent);
    margin: 40px auto;
    position: relative;
    opacity: 0.6;
}

.premium-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--text-accent);
    border-radius: 50%;
}

.story-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 50px;
    line-height: 1.4;
    position: relative;
}

.story-quote::before, .story-quote::after {
    content: '"';
    color: var(--text-accent);
    font-size: 4rem;
    opacity: 0.2;
    position: absolute;
    font-family: serif;
}

.story-quote::before {
    top: -30px;
    left: -40px;
}

.story-quote::after {
    bottom: -60px;
    right: -40px;
}


/* Founders Section Overlap */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.polaroid-frame {
    background: var(--bg-card);
    padding: 15px 15px 60px 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.polaroid-frame img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
}

.polaroid-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
    font-size: 1.4rem;
    font-style: italic;
    letter-spacing: 1px;
}

.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(3deg); }

.polaroid-frame:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 5;
}

/* Values Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: rgba(255,255,255,0.02);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: var(--transition);
}

.value-card i {
    font-size: 3rem;
    color: var(--text-accent);
    margin-bottom: 25px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.value-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--text-accent);
    transform: translateY(-10px);
}

/* Events Showcase Flow */
.events-flow {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 80px;
}

.event-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.row-reverse { direction: rtl; }
.row-reverse > * { direction: ltr; }

.event-tag {
    color: var(--text-accent);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.event-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.event-details-mini {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.event-details-mini i { color: var(--text-accent); margin-right: 8px; }

/* --- Visit Minimalist Section (Index) --- */
.visit-minimal-section {
    background-color: var(--bg-darkest);
}

.visit-minimal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.visit-tag {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin-bottom: 25px;
    display: block;
    opacity: 1;
    color: var(--text-accent);
}

.visit-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.8rem); /* Slightly increased as requested */
    line-height: 1.1;
    margin-bottom: 35px;
    color: var(--text-main);
    letter-spacing: 0.08rem;
}

.visit-details {
    margin-bottom: 45px;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.detail-text {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 300;
}

.visit-actions {
    display: flex;
    gap: 20px;
}

.btn-dark-minimal {
    padding: 16px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 40px; 
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    font-weight: 600;
}

.btn-dark-minimal:empty {
    display: none !important;
}


.btn-dark-minimal:hover {
    background: var(--text-accent);
    color: #000;
    transform: translateY(-3px);
}

.btn-dark-outline {
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    border-radius: 40px; /* Pill shape consistency */
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-dark-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

.feature-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.feature-img-wrap img {
    width: 100%;
    height: 520px; /* Reduced from 600px */
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.img-overlay-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-accent);
    letter-spacing: 1px;
}

/* --- Interactive Overlay Elements (Hearts & Glass) --- */
.floating-hearts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-hearts i {
    position: absolute;
    color: #ff6b81; /* Premium Pink */
    font-size: 1.5rem;
    opacity: 0;
    filter: drop-shadow(0 0 10px rgba(255, 107, 129, 0.4)); /* Matching Pink Glow */
    animation: floatUp 4s infinite linear;
}

.heart-1 { left: 20%; animation-delay: 0s !important; }
.heart-2 { left: 45%; animation-delay: 1.5s !important; }
.heart-3 { left: 70%; animation-delay: 0.8s !important; }
.heart-4 { left: 85%; animation-delay: 2.2s !important; }

@keyframes floatUp {
    0% { transform: translateY(120%) scale(0.5); opacity: 0; }
    20% { opacity: 0.9; }
    80% { opacity: 0.9; }
    100% { transform: translateY(-30%) scale(1.5); opacity: 0; }
}

.glass-review {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: 15px;
    color: #fff;
    max-width: 200px;
    z-index: 6;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    opacity: 0; /* Hidden by default for pop animation */
    pointer-events: none;
    animation: popAndFade 8s infinite;
}

.review-1 { top: 15%; left: 8%; animation-delay: 0s; }
.review-2 { top: 35%; right: 5%; animation-delay: 1.5s; }
.review-3 { bottom: 25%; left: 5%; animation-delay: 3s; }
.review-4 { top: 5%; right: 25%; animation-delay: 4.5s; }
.review-5 { bottom: 15%; right: 10%; animation-delay: 6s; }

.glass-review p {
    font-size: 0.8rem;
    margin-bottom: 4px;
    line-height: 1.3;
    font-weight: 300;
}

.glass-review span {
    font-size: 0.7rem;
    color: var(--text-accent);
    letter-spacing: 1px;
    font-weight: 500;
}

@keyframes popAndFade {
    0%, 15% { transform: scale(0.8) translateY(10px); opacity: 0; }
    20%, 35% { transform: scale(1) translateY(0); opacity: 1; }
    40%, 100% { transform: scale(1.05) translateY(-5px); opacity: 0; }
}

/* --- Journey Section --- */
.journey-section {
    background-color: #111;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(13, 10, 8, 0.5), rgba(5, 5, 5, 0.9)),
        url('images/charcoaltexture.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-handle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-accent);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0 10px;
}

.journey-handle:hover {
    color: #fff;
    transform: translateY(-5px);
}

.journey-handle::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-accent);
    transition: var(--transition);
    opacity: 0.5;
}

.journey-handle:hover::after {
    width: 100%;
}

/* --- Typewriter Effect Styling --- */
.story-highlight span.type-text {
    color: var(--text-accent);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    border-right: 2px solid var(--text-accent);
    padding-right: 5px;
    display: inline-block;
}

.story-highlight span.type-text:not(.typing) {
    border-right: none;
}

/* --- Footer Menu Highlights --- */
.footer-tags {
    display: flex;
    flex-direction: column; /* Changed to vertical list as requested */
    gap: 12px;
    margin-top: 15px;
    align-items: flex-start;
}

.footer-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 0; /* Minimal vertical padding for list style */
    border: none; /* Removed border for list style */
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 300;
}

.footer-tag:hover {
    color: var(--text-accent);
    border-color: var(--text-accent);
    background: rgba(218, 165, 32, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.1);
}

/* ============================================================
   RESPONSIVE DESIGN — Mobile First
   Breakpoints:
   • 1200px  Large laptop
   • 1024px  iPad Pro / tablets landscape
   • 900px   Surface Pro 7 / large tablets portrait
   • 768px   iPad Mini / iPad Air portrait / Galaxy A51
   • 600px   Galaxy S8+ / Pixel 7 / iPhone XR / Galaxy S20 Ultra 
   • 480px   iPhone 14 Pro Max / Galaxy Z Fold 5 / Asus Zenbook Fold (inner)
   • 390px   iPhone 12 / 14 Pro
   • 375px   iPhone SE
   Desktop (> 1024px) is NOT touched.
   ============================================================ */

/* ── 1200px ── Large laptops ──────────────────────────────── */
@media (max-width: 1200px) {
    .container { width: 92%; }
    .genesis-grid { gap: 60px; }
}

/* ── 1024px ── Tablets landscape / iPad Pro ───────────────── */
@media (max-width: 1024px) {
    .section-padding { padding: 80px 0; }

    /* Genesis / About grids → single column */
    .about-grid,
    .genesis-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .about-text-column,
    .genesis-text-wrap { padding: 0; }

    .overlap-img-base { width: 100%; height: 400px; }
    .overlap-img-top  { width: 45%; bottom: -15px; }

    /* Nav links spread tighter */
    .nav-links { gap: 25px; }

    /* Founders grid */
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    /* Values grid → 2 column on tablet */
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

    /* Events → single col */
    .events-flow { gap: 80px; }
    .event-row {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    .row-reverse { direction: ltr; }

    /* Contact page grids */
    .contact-visit-grid,
    .contact-order-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Gallery */
    .gallery-horizontal-wrapper { height: 300vh; }
    .gallery-h-item { min-width: 400px; height: 500px; }

    /* Journey */
    .journey-grid { grid-template-columns: 1fr; gap: 20px; }
    .journey-card { height: 350px; }

    /* Visit minimal */
    .visit-minimal-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .visit-actions { justify-content: center; }

    /* Menu category grid */
    #category-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

/* ── 900px ── Surface Pro 7 / Nest Hub ───────────────────── */
@media (max-width: 900px) {
    /* Nest Hub (1024×600) — landscape hub, no major changes needed above */

    .founders-grid { gap: 40px; }
    .polaroid-frame { padding: 12px 12px 50px 12px; }
    .polaroid-caption { font-size: 1.1rem; }

    .visit-minimal-grid { gap: 40px; }
    .feature-img-wrap img { height: 380px; }
}

/* ── 768px ── iPad Mini/Air portrait / Galaxy A51/71 ─────── */
@media (max-width: 768px) {

    /* ── Container ── */
    .container { width: 93%; }
    .section-padding { padding: 70px 0; }

    /* ── Navbar ── */
    nav {
        width: 95%;
        top: 15px;
        padding: 12px 22px;
        border-radius: 40px;
    }
    nav.scrolled {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 10px 0;
    }
    .nav-links      { display: none; }
    .nav-cta-btn    { display: none !important; }
    .mobile-menu-btn { display: block; }

    /* ── Typography ── */
    .section-title   { font-size: clamp(2rem, 7vw, 2.8rem); }
    .section-subtitle { font-size: 1rem; max-width: 100%; }
    .visit-title     { font-size: clamp(2.2rem, 8vw, 3.2rem); }

    /* ── Hero ── */
    .hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-content p  { font-size: 1rem; }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    .btn { width: 100%; text-align: center; box-sizing: border-box; }

    /* ── Genesis section ── */
    .genesis-visual-wrap { padding: 30px 20px; }
    .overlap-img-base     { width: 100%; height: 300px; }
    .overlap-img-top      { width: 50%; height: 200px; bottom: -20px; right: -10px; }

    /* ── Menu section (home) ── */
    .menu-grid { grid-template-columns: 1fr; gap: 30px; }

    /* ── About hero ── */
    .about-hero-cinematic { height: 65vh; }
    .about-hero-cinematic h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .about-hero-cinematic p  { font-size: 1rem; max-width: 100%; }
    .hero-content-wrap { padding-left: 0; text-align: center; }
    .about-label { letter-spacing: 3px; }

    /* ── Story section ── */
    .premium-story-block { padding: 0 10px; }
    .story-quote { font-size: clamp(1.3rem, 5vw, 1.7rem); }
    .story-quote::before { left: -5px; top: -25px; font-size: 2.5rem; }
    .story-quote::after  { right: -5px; bottom: -35px; font-size: 2.5rem; }

    /* ── Founders ── */
    .founders-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .polaroid-frame { max-width: 320px; margin: 0 auto; }
    .tilt-left, .tilt-right { transform: none; }

    /* ── Values ── */
    .values-grid { grid-template-columns: 1fr; gap: 20px; }
    .value-card  { padding: 40px 30px; }

    /* ── Events ── */
    .events-flow { gap: 60px; margin-top: 40px; }
    .event-row {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }
    .row-reverse { direction: ltr; }
    .event-card.polaroid-frame { max-width: 300px; margin: 0 auto; }
    .event-name { font-size: 1.8rem; }
    .event-details-mini {
        flex-direction: column;
        gap: 10px;
    }

    /* ── Contact page ── */
    /* Visit section */
    #visit > .container,
    section[id="visit"] > .container {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    #visit h1 { font-size: clamp(2.5rem, 9vw, 3.5rem) !important; margin-bottom: 35px !important; }
    .visit-content > div[style*="display: flex; gap: 20px;"] {
        flex-direction: column !important;
        gap: 15px !important;
    }
    .visit-content .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Order section */
    section:nth-of-type(2) > .container,
    .contact-order-section > .container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    section[style*="background: #050505"] > .container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* ── Menu page ── */
    #menu-main-header { margin-bottom: 30px; }
    #category-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    .category-card { height: 180px; }
    .category-info h3 { font-size: 1.5rem; }

    .menu-view-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    .back-to-cats { width: 100%; justify-content: center; }
    #view-title { font-size: 2rem !important; }
    .item-name  { font-size: 1.2rem; }
    .item-price { font-size: 1.2rem; }
    .item-desc  { max-width: 100%; font-size: 0.9rem; }
    .item-row   { align-items: flex-start; }

    /* ── Journey ── */
    .journey-grid { grid-template-columns: 1fr; gap: 20px; }
    .journey-card { height: 300px; }

    /* ── Gallery ── */
    .gallery-horizontal-wrapper { height: 250vh; }
    .gallery-h-item             { min-width: 280px; height: 380px; }
    .gallery-titles-wrap .section-title { font-size: 5rem; }

    /* ── Visit section (index) ── */
    .visit-minimal-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .visit-actions      { justify-content: center; flex-wrap: wrap; gap: 15px; }
    .btn-dark-minimal, .btn-dark-outline {
        padding: 14px 28px;
        font-size: 0.8rem;
    }
    .feature-img-wrap img { height: 340px; }

    /* ── Footer (mobile) ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    /* Brand: centred logo */
    .footer-brand {
        grid-column: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-about {
        max-width: 300px;
        margin: 0 auto;
    }
    /* Hide Quick Links and Menu Highlights on mobile */
    .footer-grid > div:nth-child(2),
    .footer-grid > div:nth-child(3) {
        display: none;
    }
    /* Get in Touch: centred */
    .footer-grid > div:nth-child(4) {
        text-align: center;
    }
    .footer-grid > div:nth-child(4) .footer-links {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-bottom div { justify-content: center; }

    /* ── WhatsApp FAB ── */
    .fab-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* ── 600px ── Galaxy S8+/S20 Ultra / Pixel 7 / iPhone XR ─── */
@media (max-width: 600px) {

    .container { width: 94%; }
    .section-padding { padding: 60px 0; }

    /* Nav */
    nav              { width: 96%; top: 12px; padding: 10px 18px; border-radius: 35px; }
    nav.scrolled     { top: 0; width: 100%; border-radius: 0; }
    .nav-logo-img    { height: 46px; }
    .logo-main       { font-size: 1.15rem; }
    .logo-sub        { font-size: 0.78rem; }

    /* Hero */
    .hero-content h1  { font-size: clamp(1.8rem, 9vw, 2.4rem); line-height: 1.25; }
    .hero-content p   { font-size: 0.95rem; margin-bottom: 30px; }

    /* About hero */
    .about-hero-cinematic { height: 60vh; }

    /* Genesis */
    .overlap-img-base { height: 260px; }
    .overlap-img-top  { width: 55%; height: 170px; border-width: 6px; }

    /* Menu cards (home) */
    .menu-card { border-radius: 25px; }
    .menu-card img { height: 200px; }

    /* Menu page */
    #category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .category-card   { height: 160px; border-radius: 16px; }
    .category-info h3 { font-size: 1.2rem; }
    .category-info p  { font-size: 0.65rem; }

    /* Visit section buttons */
    .visit-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .btn-dark-minimal,
    .btn-dark-outline {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    .feature-img-wrap img { height: 280px; }

    /* Footer — reinforce clean mobile layout */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    .footer-brand {
        grid-column: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo { justify-content: center; }
    /* Hide about text on small phones to save space */
    .footer-about { display: none; }
    /* Already hidden via 768px rule, reinforce */
    .footer-grid > div:nth-child(2),
    .footer-grid > div:nth-child(3) { display: none; }
    .footer-grid > div:nth-child(4) { text-align: center; }
    .footer-links { text-align: center; }
    .footer-tags  { align-items: center; }

    /* Gallery */
    .gallery-h-item { min-width: 240px; height: 320px; }

    /* Journey */
    .journey-card { height: 260px; }
}

/* ── 480px ── iPhone 14 Pro Max / Galaxy Z Fold5 (unfolded) ─ */
@media (max-width: 480px) {

    .container { width: 95%; }
    .section-padding { padding: 55px 0; }

    /* Nav */
    nav { top: 10px; padding: 9px 16px; }
    nav.scrolled { top: 0; }
    .nav-logo-img { height: 42px; }
    .logo-main { font-size: 1.05rem; }

    /* Hero */
    .hero-content h1  { font-size: clamp(1.7rem, 9.5vw, 2.2rem); }

    /* Genesis */
    .genesis-visual-wrap { padding: 20px 10px 50px; }
    .overlap-img-base     { height: 230px; }
    .overlap-img-top      { width: 55%; height: 150px; right: -5px; }

    /* Polaroid tilts removed on small screens */
    .tilt-left, .tilt-right { transform: none; }
    .polaroid-frame { max-width: 100%; }

    /* Values */
    .value-card { padding: 30px 20px; }
    .value-card h3 { font-size: 1.4rem; }

    /* Menu page */
    #category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .category-card   { height: 140px; border-radius: 14px; }
    .category-info h3 { font-size: 1.1rem; }

    .item-name  { font-size: 1.1rem; }
    .item-price { font-size: 1.1rem; white-space: nowrap; }
    .item-desc  { font-size: 0.85rem; }

    /* Journey */
    .journey-card { height: 240px; }

    /* Section title */
    .section-title { font-size: clamp(1.8rem, 8vw, 2.2rem); }

    /* About section */
    .story-quote { font-size: 1.2rem; line-height: 1.6; }

    /* Footer */
    footer { padding: 60px 0 30px; }
    .footer-grid { gap: 25px; }

    /* WhatsApp FAB */
    .fab-whatsapp { width: 48px; height: 48px; font-size: 22px; bottom: 18px; right: 16px; }
}

/* ── 390px ── iPhone 12 Pro / iPhone 14 Pro ──────────────── */
@media (max-width: 390px) {

    .container { width: 96%; }

    nav { top: 8px; padding: 9px 15px; }
    .nav-logo-img { height: 40px; }
    .logo-main { font-size: 1rem; }
    .logo-sub  { display: none; }

    .section-title { font-size: clamp(1.6rem, 8.5vw, 2rem); }
    .hero-content h1 { font-size: clamp(1.6rem, 9vw, 2rem); }

    #category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .category-card   { height: 130px; border-radius: 12px; }
    .category-info h3 { font-size: 1rem; }
    .category-info p  { font-size: 0.6rem; letter-spacing: 1px; }

    .item-row { flex-wrap: wrap; gap: 4px; }
    .item-name  { font-size: 1rem; }
    .item-price { font-size: 1rem; }
}

/* ── 375px ── iPhone SE ──────────────────────────────────── */
@media (max-width: 375px) {

    .container { width: 97%; }

    nav { top: 6px; padding: 8px 14px; }
    .nav-logo-img { height: 36px; }
    .logo-main { font-size: 0.95rem; }

    .section-title { font-size: clamp(1.5rem, 9vw, 1.9rem); }
    .hero-content h1 { font-size: clamp(1.5rem, 9.5vw, 1.9rem); }
    .hero-content p  { font-size: 0.88rem; }
    .btn { padding: 12px 24px; font-size: 0.78rem; }

    #category-grid { gap: 8px; }
    .category-card  { height: 120px; }
    .category-info h3 { font-size: 0.95rem; }

    .overlap-img-base { height: 200px; }
    .journey-card     { height: 200px; }

    .footer-grid { gap: 20px; }
    .footer-heading { font-size: 0.9rem; }

    .fab-whatsapp { width: 44px; height: 44px; font-size: 20px; bottom: 15px; right: 14px; }
}

/* ── Surface Duo (540px folded / 720px unfolded) ─────────── */
@media (min-width: 481px) and (max-width: 720px) {
    #category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px;
    }
    .category-card { height: 165px; }
}

/* ── Nest Hub (1024×600) / Nest Hub Max (1280×800) ────────── */
@media (max-height: 680px) and (min-width: 900px) {
    .section-padding { padding: 60px 0; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-hero-cinematic { height: 100vh; }
    #category-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Galaxy Z Fold 5 (inner screen ~344px portrait) ──────── */
@media (max-width: 344px) {
    .container { width: 98%; }
    .section-title { font-size: 1.4rem; }
    .hero-content h1 { font-size: 1.4rem; }

    #category-grid { grid-template-columns: 1fr; }
    .category-card  { height: 150px; }
    .category-info h3 { font-size: 1.2rem; }

    nav { padding: 8px 12px; }
    .nav-logo-img { height: 34px; }
    .logo-main    { font-size: 0.9rem; }
}

/* --- Custom Google Reviews Marquee --- */
.reviews-widget-container {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.reviews-widget-container::before,
.reviews-widget-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-widget-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-darkest), transparent);
}

.reviews-widget-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-darkest), transparent);
}

.reviews-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.reviews-marquee:hover {
    animation-play-state: paused;
}

.reviews-track {
    display: flex;
    gap: 30px;
    padding-right: 30px; /* Matching gap */
}

.review-card {
    width: 350px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition);
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 165, 32, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--text-accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.reviewer-details h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 2px 0;
    font-weight: 500;
}

.reviewer-details span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.google-icon i {
    color: #4285F4;
    font-size: 1.5rem;
}

.review-stars {
    color: #fbbc04;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.review-date {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    align-self: flex-start;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .review-card {
        width: 300px;
    }
}