 :root {
    --deep-forest: #111111;
    --rich-olive: #1f1f1f;
    --warm-sage: #6e6e6e;
    --gold-accent: #d4a84a;
    --gold-light: #dcc07a;
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --charcoal: #2a2a28;
    --soft-brown: #8b7355;
    --blush: #e8ddd0;
    --night-green: #050505;
    --amber-glow: rgba(212, 168, 74, 0.15);
    --site-max-width: 1320px;
    --footer-max-width: 1180px;
    --font-display: 'Cormorant Garamond', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-accent) var(--deep-forest);
  }

  body {
    font-family: var(--font-body);
    background: var(--night-green);
    color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  ::selection {
    background: #d4a84a;
    color: var(--deep-forest);
  }

  /* ═══════════════ PRELOADER ═══════════════ */
  .preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--night-green);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 20px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  .preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
  .preloader-logo {
    font-family: var(--font-display);
    font-size: 2.4rem; font-weight: 300;
    letter-spacing: 0.4em; color: var(--gold-accent);
    animation: fadeInUp 1s ease forwards;
    text-align: center;
  }
  .preloader-line {
    width: 60px; height: 1px; background: #d4a84a;
    animation: expandLine 1.5s ease forwards;
  }
  @keyframes expandLine { from { width: 0; } to { width: 60px; } }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media screen and (max-width: 768px) {
      .preloader-logo {
      font-size: 1.4rem; 
    }
  }

  /* ═══════════════ NAVIGATION ═══════════════ */
  nav {
    position: fixed; top: 0; left: 50%; right: auto; z-index: 100;
    width: min(100%, var(--site-max-width));
    transform: translateX(-50%);
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.5s ease;
    background: transparent;
  }
  nav.scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(20px);
    padding: 14px 60px;
    box-shadow: 0 2px 40px rgba(0,0,0,0.3);
  }
  nav.menu-open {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.3);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 300;
    letter-spacing: 0.35em; color: var(--gold-accent);
    text-decoration: none;
    transition: opacity 0.3s, filter 0.3s ease;
  }
  .nav-logo:hover { opacity: 0.8; }
  #mainNav.menu-open .nav-logo {
    opacity: 0.35;
    filter: blur(2px);
  }
  .nav-logo span { font-weight: 600; }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .mobile-menu-brand { display: none; }
  .mobile-menu-brand img {
    width: 92px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
  }
  .nav-links a {
    font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--cream); text-decoration: none;
    position: relative; padding-bottom: 4px;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: #d4a84a;
    transition: width 0.4s ease;
  }
  .nav-links a:hover { color: var(--gold-accent); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-family: var(--font-body) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.2em !important;
    padding: 10px 28px !important;
    border: 1px solid var(--gold-accent) !important;
    color: var(--gold-accent) !important;
    transition: all 0.4s ease !important;
  }
  .nav-cta:hover {
    background: #d4a84a !important;
    color: var(--deep-forest) !important;
  }
  .nav-cta::after { display: none !important; }

  .mobile-toggle {
    display: none; cursor: pointer; flex-direction: column; gap: 5px;
    width: 42px; height: 42px;
    border: none;
    background: transparent;
    appearance: none;
    justify-content: center; align-items: center;
    padding: 0;
    position: relative; z-index: 130;
  }
  .mobile-toggle span {
    width: 22px; height: 1.5px; background: var(--cream);
    transition: all 0.3s;
  }
  .mobile-toggle:focus-visible {
    outline: 2px solid var(--gold-accent);
    outline-offset: 3px;
  }
  .mobile-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-overlay {
    position: fixed; inset: 0;
    z-index: 90;
    background: rgba(5, 5, 5, 0.62);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .nav-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  body.menu-open { overflow: hidden; }

  /* ═══════════════ HERO ═══════════════ */
  .hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 80%, rgba(200,165,92,0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
      linear-gradient(180deg, var(--night-green) 0%, #0b0b0b 42%, #121212 72%, var(--night-green) 100%);
  }
  .hero-particles {
    position: absolute; inset: 0; overflow: hidden;
  }
  .particle {
    position: absolute; border-radius: 50%;
    background: #d4a84a; opacity: 0;
    animation: floatParticle 6s ease-in-out infinite;
  }
  @keyframes floatParticle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    50% { opacity: 0.4; transform: translateY(-80px) scale(1); }
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.78) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 900px; padding: 0 30px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-body); font-size: 0.7rem;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold-accent); margin-bottom: 30px;
    opacity: 0; animation: fadeInUp 1s 1.8s ease forwards;
  }
  .hero-badge::before, .hero-badge::after {
    content: ''; width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, #d4a84a);
  }
  .hero-badge::after {
    background: linear-gradient(90deg, #d4a84a, transparent);
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 300; line-height: 1.05;
    letter-spacing: 0.06em;
    color: var(--cream);
    opacity: 0; animation: fadeInUp 1.2s 2s ease forwards;
  }
  .hero-title em {
    font-family: var(--font-heading);
    font-style: italic; font-weight: 400;
    color: var(--gold-accent);
  }
  .hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem; font-weight: 300;
    letter-spacing: 0.08em; line-height: 1.8;
    color: rgba(245,240,232,0.7);
    margin-top: 28px; max-width: 600px;
    margin-left: auto; margin-right: auto;
    opacity: 0; animation: fadeInUp 1s 2.3s ease forwards;
  }
  .hero-ctas {
    display: flex; gap: 16px; justify-content: center;
    margin-top: 50px; flex-wrap: wrap;
    opacity: 0; animation: fadeInUp 1s 2.6s ease forwards;
  }
  .btn-primary {
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    padding: 16px 40px; border: none;
    background: #d4a84a; color: var(--deep-forest);
    cursor: pointer; text-decoration: none;
    transition: all 0.4s ease;
    position: relative; 
    overflow: hidden;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }
  .btn-primary:hover::before { transform: translateX(100%); }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200,165,92,0.25);
  }
  .btn-outline {
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 400;
    letter-spacing: 0.22em; text-transform: uppercase;
    padding: 16px 40px;
    border: 1px solid rgba(200,165,92,0.5);
    background: transparent; color: var(--gold-accent);
    cursor: pointer; text-decoration: none;
    transition: all 0.4s ease;
  }
  .btn-outline:hover {
    border-color: var(--gold-accent);
    background: rgba(200,165,92,0.08);
    transform: translateY(-2px);
  }
  .hero-scroll {
    position: absolute; bottom: 40px; 
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    opacity: 0; animation: fadeInUp 1s 3s ease forwards;
  }
  .hero-scroll span {
    font-size: 0.6rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: rgba(245,240,232,0.4);
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, #d4a84a, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 30px; }
    50% { opacity: 1; height: 50px; }
  }

  /* ═══════════════ SECTION COMMONS ═══════════════ */
  section { padding: 120px 60px; position: relative; }
  section:not(.hero) > *,
  .experience-strip {
    max-width: var(--site-max-width);
    margin-left: auto;
    margin-right: auto;
  }
  footer > * {
    max-width: var(--footer-max-width);
    margin-left: auto;
    margin-right: auto;
  }
  .section-label {
    font-family: var(--font-body);
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold-accent);
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
  }
  .section-label::before {
    content: ''; width: 30px; height: 1px;
    background: #d4a84a;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300; line-height: 1.15;
    letter-spacing: 0.03em; color: var(--cream);
    max-width: 700px;
  }
  .section-title em {
    font-family: var(--font-heading);
    font-style: italic; color: var(--gold-accent);
  }

  /* ═══════════════ EXPERIENCE STRIP ═══════════════ */
  .experience-strip {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(200,165,92,0.15);
    border-bottom: 1px solid rgba(200,165,92,0.15);
    background: rgba(200,165,92,0.03);
  }
  .exp-item {
    padding: 60px 50px; text-align: center;
    border-right: 1px solid rgba(200,165,92,0.1);
    transition: all 0.5s ease;
    position: relative; overflow: hidden;
  }
  .exp-item:last-child { border-right: none; }
  .exp-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(200,165,92,0.05), transparent);
    opacity: 0; transition: opacity 0.5s;
  }
  .exp-item:hover::before { opacity: 1; }
  .exp-icon {
    font-size: 2rem; margin-bottom: 20px;
    filter: grayscale(0.3);
  }
  .exp-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 400;
    letter-spacing: 0.05em; color: var(--cream);
    margin-bottom: 12px;
  }
  .exp-item p {
    font-size: 0.85rem; font-weight: 300;
    line-height: 1.7; color: rgba(245,240,232,0.55);
    max-width: 280px; margin: 0 auto;
  }

  /* ═══════════════ GAZEBO FEATURE ═══════════════ */
  .gazebo-section {
    background:
      radial-gradient(ellipse at 20% 50%, rgba(200,165,92,0.06) 0%, transparent 50%),
      var(--night-green);
  }
  .gazebo-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    margin-top: 60px;
  }
  .gazebo-visual {
    position: relative; aspect-ratio: 4/5;
    background:
      linear-gradient(135deg, rgba(200,165,92,0.12) 0%, rgba(42,42,42,0.24) 50%, rgba(0,0,0,0.55) 100%);
    border: 1px solid rgba(200,165,92,0.15);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .gazebo-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  .gazebo-visual::before {
    content: ''; position: absolute;
    top: -1px; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4a84a, transparent);
  }
  .gazebo-placeholder {
    text-align: center; padding: 40px;
  }
  .gazebo-placeholder .gaz-img {
    opacity: 0.6;
   
  }
  .gazebo-placeholder p {
    font-family: var(--font-display);
    font-size: 1.1rem; font-style: italic;
    color: rgba(245,240,232,0.4);
  }
  .gazebo-info h3 {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 400;
    color: var(--cream); margin-bottom: 20px;
  }
  .gazebo-info > p {
    font-size: 0.92rem; font-weight: 300;
    line-height: 1.85; color: rgba(245,240,232,0.6);
    margin-bottom: 40px;
  }
  .gazebo-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-bottom: 40px;
  }
  .gazebo-cta-btn {
    display: block;
    width: fit-content;
  }
  .gaz-feature {
    padding: 24px;
    background: rgba(200,165,92,0.04);
    border: 1px solid rgba(200,165,92,0.1);
    transition: all 0.4s ease;
  }
  .gaz-feature:hover {
    background: rgba(200,165,92,0.08);
    border-color: rgba(200,165,92,0.25);
    transform: translateY(-3px);
  }
  .gaz-feature h4 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 400;
    color: var(--gold-accent); margin-bottom: 6px;
  }
  .gaz-feature p {
    font-size: 0.78rem; font-weight: 300;
    color: rgba(245,240,232,0.5); line-height: 1.6;
  }

  /* ═══════════════ GAZEBO TYPES ═══════════════ */
  .gazebo-types {
    background:
      linear-gradient(180deg, var(--night-green) 0%, #0e0e0e 50%, var(--night-green) 100%);
    overflow: hidden;
  }
  .types-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; margin-top: 60px;
  }
  .type-card {
    position: relative; padding: 50px 36px;
    background: rgba(200,165,92,0.03);
    border: 1px solid rgba(200,165,92,0.1);
    transition: all 0.5s ease;
    overflow: hidden;
  }
  .type-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #d4a84a, transparent);
    opacity: 0; transition: opacity 0.5s;
  }
  .type-card:hover::before { opacity: 1; }
  .type-card:hover {
    background: rgba(200,165,92,0.06);
    border-color: rgba(200,165,92,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  .type-card .card-icon {
    font-size: 2.5rem; margin-bottom: 20px;
  }
  .type-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 400;
    color: var(--cream); margin-bottom: 8px;
  }
  .type-card .card-tag {
    font-size: 0.68rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold-accent);
    margin-bottom: 18px; display: block;
  }
  .type-card p {
    font-size: 0.85rem; font-weight: 300;
    line-height: 1.75; color: rgba(245,240,232,0.5);
    margin-bottom: 24px;
  }
  .type-card .card-details {
    display: flex; flex-direction: column; gap: 8px;
    padding-top: 20px; border-top: 1px solid rgba(200,165,92,0.1);
  }
  .type-card .detail-row {
    display: flex; justify-content: space-between;
    font-size: 0.78rem;
  }
  .detail-row .label { color: rgba(245,240,232,0.4); }
  .detail-row .value { color: var(--gold-accent); font-weight: 500; }

  /* ═══════════════ SIGNATURE DISHES ═══════════════ */
  .dishes-section {
    background: var(--night-green);
  }
  .dishes-scroll {
    display: flex; gap: 30px; margin-top: 60px;
    overflow-x: auto; padding-bottom: 2px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
  }
  .dishes-scroll::-webkit-scrollbar { display: none; }
  .dish-card {
    flex: 0 0 320px; scroll-snap-align: start;
    position: relative; overflow: hidden;
    background: rgba(200,165,92,0.03);
    border: 1px solid rgba(200,165,92,0.08);
    transition: all 0.5s ease;
  }
  .dish-card:hover {
    border-color: rgba(200,165,92,0.2);
    transform: translateY(-4px);
  }
  .dishes-nav {
    margin-top: 24px;
    margin-bottom: 10px;
  
  }
  .dishes-section .menu-btn { margin-top: 35px; }
  .dish-img {
    height: 280px;
    background: linear-gradient(135deg, rgba(36,36,36,0.35), rgba(200,165,92,0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; position: relative;
    overflow: hidden;
  }
  .dish-img::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
  }
  .dish-info {
    padding: 28px;
  }
  .dish-info h4 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 400;
    color: var(--cream); margin-bottom: 6px;
  }
  .dish-info .cuisine-tag {
    font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold-accent);
    margin-bottom: 10px; display: block;
  }
  .dish-info p {
    font-size: 0.82rem; font-weight: 300;
    color: rgba(245,240,232,0.45); line-height: 1.65;
  }

  .menu-download-container {
  text-align: left;
  margin-top: 3rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 35px;
  background-color: #0a0a0a;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(200,165,92,0.35);
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.download-btn:hover {
  background-color: #d4a84a;
  color: var(--deep-forest);
  transform: translateY(-3px);
}
.menu {
   display: flex; gap: 16px; justify-content: center;
    margin-top: 10px; flex-wrap: wrap;
    opacity: 0; animation: fadeInUp 1s 2.6s ease forwards;
}

.reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeInUp 1s 2.6s ease forwards;
  }
  /* ═══════════════ AMBIENCE SECTION ═══════════════ */
  .ambience-section {
    background:
      radial-gradient(ellipse at 80% 30%, rgba(200,165,92,0.05) 0%, transparent 40%),
      var(--night-green);
  }
  .ambience-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 16px; margin-top: 60px;
  }
  .amb-card {
    position: relative; overflow: hidden;
    background: rgba(200,165,92,0.04);
    border: 1px solid rgba(200,165,92,0.08);
    display: flex; align-items: flex-end;
    padding: 30px; transition: all 0.5s ease;
    cursor: pointer;
  }
  .amb-card:hover { border-color: rgba(200,165,92,0.2); }
  .amb-card:first-child { grid-row: span 2; }
  .amb-card .amb-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(34,34,34,0.2), rgba(200,165,92,0.08));
    transition: transform 0.6s ease;
  }
  .amb-card:hover .amb-bg { transform: scale(1.05); }
  .amb-card .amb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.88) 100%);
  }

    .amb-card .amb-overlay img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
  .amb-card .amb-content { position: relative; z-index: 2; }
  .amb-card h4 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 400;
    color: var(--cream); margin-bottom: 4px;
  }
  .amb-card span {
    font-size: 0.72rem; letter-spacing: 0.15em;
    color: var(--gold-accent);
  }
  .amb-card .amb-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem; opacity: 0.25;
  }

  /* ═══════════════ TESTIMONIAL ═══════════════ */
  .testimonial-section {
    text-align: center;
    background: rgba(200,165,92,0.02);
    border-top: 1px solid rgba(200,165,92,0.08);
    border-bottom: 1px solid rgba(200,165,92,0.08);
    overflow: hidden;
  }
  .testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }
  .testimonial-swiper {
    overflow: hidden;
  }
  .testimonial-slide {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
  }
  .testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300; font-style: italic;
    line-height: 1.65; color: rgba(245,240,232,0.75);
    max-width: 750px; margin: 24px auto 20px;
  }
  .testimonial-author {
    font-family: var(--font-body);
    font-size: 0.78rem; letter-spacing: 0.15em;
    color: var(--gold-accent);
  }
  .quote-mark {
    font-family: var(--font-display);
    font-size: 4rem; color: var(--gold-accent);
    opacity: 0.4; line-height: 1;
  }
  .testimonial-nav {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  .testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212,168,74,0.35);
    background: rgba(212,168,74,0.08);
    color: var(--gold-accent);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .testimonial-btn:hover {
    background: rgba(212,168,74,0.16);
    border-color: var(--gold-accent);
    transform: translateY(-2px);
  }
  .testimonial-btn:focus-visible {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
  }

  /* ═══════════════ RESERVATION CTA ═══════════════ */
  .reservation-cta {
    text-align: center;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(200,165,92,0.08) 0%, transparent 60%),
      var(--night-green);
    padding: 140px 60px;
  }
  .reservation-cta .section-label { justify-content: center; }
  .reservation-cta .section-label::before { display: none; }
  .reservation-cta .section-title {
    margin: 0 auto 20px;
    text-align: center;
  }
  .reservation-cta > p {
    font-size: 0.95rem; font-weight: 300;
    color: rgba(245,240,232,0.55); line-height: 1.8;
    max-width: 500px; margin: 0 auto 50px;
  }
.reservation-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  justify-items: center;
  margin-bottom: 40px;
}

.res-option {
  width: 100%;
  max-width: 320px;
}

@media (max-width: 768px) {
  .reservation-options {
    grid-template-columns: repeat(2, 1fr);
  }
}
  .res-option {
    padding: 20px 32px;
    background: rgba(200,165,92,0.04);
    border: 1px solid rgba(200,165,92,0.12);
    cursor: pointer; transition: all 0.4s ease;
    text-decoration: none;
  }
  .res-option:hover {
    background: rgba(200,165,92,0.1);
    border-color: var(--gold-accent);
    transform: translateY(-3px);
  }
  .res-option .res-icon { font-size: 1.5rem; margin-bottom: 8px; }
  .res-option h4 {
    font-family: var(--font-display);
    font-size: 1rem; color: var(--cream);
  }
  .res-option p {
    font-size: 0.7rem; color: rgba(245,240,232,0.4);
    margin-top: 4px;
  }

  @media screen and (max-width: 768px) {
      .reservation-cta {
    padding: 140px 20px;
  }
  }

  /* ═══════════════ FOOTER ═══════════════ */
  footer {
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(200,165,92,0.1);
    background: var(--night-green);
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1.4fr;
    gap: 60px; margin-bottom: 60px;
    align-items: start;
  }
  .footer-brand {
    display: grid;
    grid-template-columns: 110px 1fr;
    column-gap: 7px;
    align-items: center;
  }
  .footer-brand-logo-link {
    display: block;
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    align-self: center;
  }
  .footer-brand-logo {
    width: clamp(80px, 6vw, 100px);
    height: auto;
    display: block;
    object-fit: contain;
  }
  .footer-brand-content {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-brand .nav-logo {
    display: inline-block; margin-bottom: 16px;
    font-size: 1.3rem;
  }
  .footer-brand p {
    font-size: 0.85rem; font-weight: 300;
    color: rgba(245,240,232,0.45); line-height: 1.75;
    max-width: 360px;
    margin: 0;
  }
  footer h5 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 400;
    color: var(--cream); margin-bottom: 20px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 12px; }
  .footer-links a {
    font-size: 0.82rem; font-weight: 300;
    color: rgba(245,240,232,0.45);
    text-decoration: none; transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold-accent); }
  .footer-contact p {
    font-size: 0.82rem; font-weight: 300;
    color: rgba(245,240,232,0.45); line-height: 1.8;
    margin-bottom: 16px;
  }
  .footer-contact a {
    color: var(--gold-accent); text-decoration: none;
  }
  .footer-social {
    display: flex; gap: 12px; margin-top: 0;
  }
  .footer-social a {
    width: 30x; height: 30px;
    border: none;
    background: transparent;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: rgba(245,240,232,0.92);
    text-decoration: none; transition: all 0.3s;
  }
  .footer-social a svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .footer-social .icon-instagram {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .footer-social .icon-facebook {
    fill: currentColor;
  }
  .footer-social a:hover {
    background: transparent;
    color: var(--gold-accent);
    transform: translateY(-1px);
  }
  .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(200,165,92,0.08);
    display: flex; justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p {
    font-size: 0.72rem; color: rgba(165, 164, 164, 0.3);
    letter-spacing: 0.1em;
  }
  .footer-bottom a {
    color: rgba(245,240,232,0.3);
    text-decoration: none;
  }
  .footer-bottom a:hover { color: var(--gold-accent); }

  /* ═══════════════ ANIMATIONS ═══════════════ */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ═══════════════ MOBILE ═══════════════ */
  @media (max-width: 1024px) {
    section { padding: 80px 40px; }
    .gazebo-grid { grid-template-columns: 1fr ; gap: 50px; }
    .types-grid { grid-template-columns: 1fr; max-width: 500px; }
    .ambience-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: auto;
      gap: 14px;
    }
    .amb-card:first-child {
      grid-column: 1 / -1;
      grid-row: span 1;
      min-height: 290px;
    }
    .amb-card { min-height: 250px; 
      grid-template-columns: 1fr;
      padding: 24px;
    }
    .amb-card:first-child .amb-overlay img { object-position: center 70%; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 1022px) {
    .gazebo-cta-btn {
      margin: 0 auto 20px;
    }
  }

  @media (max-width: 1021px) {
    .types-grid {
      display: flex;
      flex-wrap: nowrap;
      gap: 20px;
      max-width: 100%;
      overflow-x: auto;
      padding-bottom: 10px;
      scroll-snap-type: x mandatory;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .types-grid::-webkit-scrollbar { display: none; }
    .types-grid .type-card {
      flex: 0 0 min(320px, 82vw);
      scroll-snap-align: start;
    }
  }

  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-logo {
      font-size: 1.28rem;
      letter-spacing: 0.22em;
    }
    .nav-links { gap: 18px; }
    .nav-links a {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
    }
    .nav-cta {
      font-size: 0.64rem !important;
      letter-spacing: 0.14em !important;
      padding: 8px 16px !important;
    }
    section { padding: 60px 24px; }
    .experience-strip { grid-template-columns: 1fr; }
    .exp-item { border-right: none; border-bottom: 1px solid rgba(200,165,92,0.1); }
    .exp-item:last-child { border-bottom: none; }
    .gazebo-features { grid-template-columns: 1fr 1fr; }
    .ambience-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: auto;
      gap: 14px;
    }
    .amb-card:first-child {
      grid-column: 1 / -1;
      grid-row: span 1;
      min-height: 270px;
    }
    .amb-card {
      min-height: 190px;
      padding: 20px;
    }
    .amb-card .amb-overlay img { object-position: center 62%; }
    .dishes-scroll { gap: 16px; }
    .dish-card { flex: 0 0 280px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand { grid-template-columns: 84px 1fr; column-gap: 16px; }
    .footer-brand-logo { width: 84px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .testimonial-slide { min-height: 300px; padding: 0 4px; }
    .testimonial-btn { width: 40px; height: 40px; }
  }

  @media (max-width: 858px) {
    nav { padding: 14px 20px; }
    nav.scrolled { padding: 11px 20px; }
    .nav-logo {
      font-size: 1.18rem;
      letter-spacing: 0.22em;
    }
    .mobile-toggle { display: flex; }
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(82vw, 320px);
      height: 100vh;
      padding: 66px 24px 30px;
      background: linear-gradient(160deg, rgba(10, 10, 10, 0.98) 0%, rgba(22, 22, 22, 0.98) 100%);
      border-left: 1px solid rgba(212, 168, 74, 0.28);
      box-shadow: -18px 0 40px rgba(0, 0, 0, 0.42);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      transition: right 0.38s ease;
      z-index: 120;
    }
    .nav-links .mobile-menu-brand {
      width: auto;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      align-self: flex-start;
      margin-top: -8px;
      padding: 0 0 8px;
      margin-bottom: 4px;
      border-bottom: none;
    }
    .nav-links .mobile-menu-brand img { width: 58px; }
    .nav-links .mobile-menu-brand::after { display: none; }
    .nav-links .mobile-menu-brand:hover { opacity: 0.92; }
    .nav-links.open { right: 0; }
    .nav-links a {
      width: 100%;
      font-size: 0.82rem;
      letter-spacing: 0.16em;
      padding: 0 0 10px;
      border-bottom: 1px solid rgba(212, 168, 74, 0.16);
    }
    .nav-links a::after { display: none; }
    .nav-links .nav-cta {
      margin-top: 12px;
      width: 100%;
      text-align: center;
      border-bottom: none;
      padding: 11px 16px !important;
    }
  }

  @media (max-width: 1027px) {
    .gazebo-info {
      display: flex;
      flex-direction: column;
    }
    .gazebo-cta-btn {
      order: 3;
      margin: 24px auto 0;
    }
    .gazebo-features {
      order: 2;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 0;
      margin-bottom: 0;
    }
    .gaz-feature {
      min-width: 0;
      padding: 14px 10px;
    }
    .gaz-feature h4 {
      font-size: 0.92rem;
      margin-bottom: 4px;
    }
    .gaz-feature p {
      font-size: 0.66rem;
      line-height: 1.35;
    }
  }

  @media (max-width: 1025px) and (min-width: 768px) {
    .gazebo-grid {
      grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
      gap: 20px;
      margin-top: 36px;
      align-items: start;
    }
    .gazebo-visual {
      width: clamp(220px, 27vw, 290px);
      aspect-ratio: 3 / 4;
      max-height: 360px;
      align-self: start;
      justify-self: center;
    }
    .gazebo-image { object-position: center 18%; }
    .gazebo-info > p {
      margin-bottom: 24px;
      line-height: 1.65;
    }
    .gazebo-features { gap: 10px; }
    .gaz-feature { padding: 12px 10px; }
  }

  @media (max-width: 767px) and (min-width: 320px) {
    .gazebo-section {
      padding-left: clamp(12px, 4vw, 20px);
      padding-right: clamp(12px, 4vw, 20px);
    }
    .gazebo-grid {
      grid-template-columns: clamp(118px, 34vw, 240px) minmax(0, 1fr);
      gap: clamp(10px, 2.2vw, 16px);
      margin-top: 28px;
      align-items: start;
    }
    .gazebo-visual {
      width: 100%;
      aspect-ratio: 3 / 4;
      max-height: none;
      align-self: start;
      justify-self: start;
    }
    .gazebo-image { object-position: center 56%; }
    .gazebo-info {
      align-self: start;
      justify-content: flex-start;
    }
    .gazebo-info h3 {
      font-size: clamp(0.98rem, 2.2vw, 1.45rem);
      line-height: 1.2;
      margin-bottom: 8px;
    }
    .gazebo-info > p {
      font-size: clamp(0.68rem, 1.55vw, 0.86rem);
      line-height: 1.45;
      margin-bottom: 12px;
    }
    .gazebo-features {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 7px;
    }
    .gaz-feature {
      padding: 8px 7px;
    }
    .gaz-feature h4 {
      font-size: clamp(0.76rem, 1.5vw, 0.9rem);
      margin-bottom: 3px;
    }
    .gaz-feature p {
      font-size: clamp(0.58rem, 1.15vw, 0.7rem);
      line-height: 1.3;
    }
    .gazebo-cta-btn { margin: 14px auto 0; }
  }

  @media (max-width: 600px) {
    .gazebo-grid {
      grid-template-columns: 1fr;
      gap: 18px;
      margin-top: 24px;
    }
    .gazebo-visual {
      width: min(100%, 330px);
      aspect-ratio: auto;
      justify-self: center;
      align-self: start;
    }
    .gazebo-image {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center top;
    }
    .gazebo-info {
      align-self: start;
      justify-content: flex-start;
    }
    .gazebo-cta-btn {
      margin-top: 16px;
    }
  }

  @media (max-width: 520px) {
    footer {
      padding: 64px 20px 32px;
    }
    .footer-brand {
      grid-template-columns: 72px 1fr;
      column-gap: 8px;
      row-gap: 0;
      text-align: left;
      align-items: center;
    }
    .footer-brand-logo-link {
      grid-column: 1;
      grid-row: 1;
      margin: 0;
    }
    .footer-brand-logo {
      width: 72px;
    }
    .footer-brand-content {
      grid-column: 2;
      gap: 10px;
    }
    .footer-brand .nav-logo {
      margin-bottom: 8px;
      font-size: 1.12rem;
    }
    .footer-brand p {
      max-width: 100%;
      margin: 0;
      line-height: 1.65;
    }
    .footer-social {
      margin-top: 0;
      gap: 12px;
    }
  }

  /* ═══════════════ CURSOR GLOW ═══════════════ */
  .cursor-glow {
    position: fixed; width: 300px; height: 300px;
    border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(200,165,92,0.04) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1; transition: opacity 0.3s;
  }


  .menu-btn {
    --book-w: clamp(176px, 21vw, 236px);
    --book-h: calc(var(--book-w) * 1.2);
    position: relative;
    display: block;
    width: var(--book-w);
    height: var(--book-h);
    margin: 28px auto 0;
    padding: 0;
    text-decoration: none;
    background: transparent;
    border: none;
    top:50px;
    perspective: 1100px;
  }

  .menu-btn::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 5%;
    bottom: -16px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 74%);
    filter: blur(2px);
    pointer-events: none;
  }

  .menu-book-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 2px 6px 6px 2px;
    overflow: hidden;
    transform: rotateY(-17deg);
    transform-origin: left center;
    background:
      linear-gradient(170deg, #18a3e4 0%, #0f7dbc 55%, #0a5f92 100%);
    border: 1px solid rgba(190, 232, 255, 0.38);
    box-shadow:
      18px 14px 0 rgba(10, 56, 92, 0.9),
      20px 16px 24px rgba(0, 0, 0, 0.55);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
  }

  .menu-book-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.1) 26%, transparent 50%);
    z-index: 2;
    opacity: 0.45;
    pointer-events: none;
  }

  .menu-book-card::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 10px;
    bottom: 10px;
    width: 14px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, #e4f6ff 0%, #bfd6e3 100%);
    box-shadow: inset -2px 0 0 rgba(81, 104, 121, 0.34);
    z-index: 3;
  }

  .menu-book-spine {
    position: absolute;
    left: -12px;
    top: 10px;
    bottom: 10px;
    width: 12px;
    border-radius: 2px 0 0 2px;
    background: linear-gradient(180deg, #0c6c9f 0%, #084f77 100%);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.28);
    z-index: 3;
  }

  .menu-book-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 82%;
    display: block;
    z-index: 1;
  }

  .menu-btn:hover .menu-book-card {
    transform: rotateY(-10deg) translateY(-6px);
    box-shadow:
      15px 12px 0 rgba(10, 56, 92, 0.95),
      24px 20px 30px rgba(0, 0, 0, 0.58);
  }

  .menu-btn:focus-visible {
    outline: 2px solid #bfeaff;
    outline-offset: 5px;
  }

  .menu-book-modal {
    position: fixed;
    inset: 0;
    z-index: 240;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 3vw, 28px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .menu-book-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-book-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 3, 0.76);
    backdrop-filter: blur(4px);
  }

  .menu-book-dialog {
    position: relative;
    width: auto;
    max-width: 96vw;
    max-height: 90vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(24px) scale(0.965);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
  }

  .menu-book-modal.is-open .menu-book-dialog {
    transform: translateY(0) scale(1);
  }

  .menu-book-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.88);
    color: #f6f6f6;
    font-size: 1.38rem;
    line-height: 1;
    cursor: pointer;
    z-index: 4;
  }

  .menu-book-close:hover {
    background: rgba(36, 36, 36, 0.96);
  }

  .menu-book-opened {
    display: flex;
    width: auto;
    min-height: 0;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .menu-page {
    position: relative;
    min-height: 0;
  }

  .menu-page-cover {
    background: #0f7dbc;
    transform-origin: left center;
    transform: perspective(1300px) rotateY(-22deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset -20px 0 30px rgba(0, 0, 0, 0.22);
  }

  .menu-book-modal.is-open .menu-page-cover {
    transform: perspective(1300px) rotateY(-7deg);
  }

  .menu-page-cover::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 18px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, transparent 100%);
    pointer-events: none;
  }

  .menu-page-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 78%; 
  }

  .menu-page-content {
    background: transparent;
    color: var(--cream);
    border-left: none;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .menu-page-head {
    display: none;
  }

  .menu-page-head h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.1vw, 1.7rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #101010;
  }

  .menu-page-head a {
    font-family: var(--font-body);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0d4262;
    text-decoration: none;
    border: 1px solid rgba(13, 66, 98, 0.42);
    padding: 9px 12px;
  }

  .menu-page-head a:hover {
    background: rgba(13, 66, 98, 0.09);
  }

  .menu-page-frame {
    flex: 1;
    width: 100%;
    border: none;
    background: #fff;
  }

  .menu-image-stage {
    flex: 1;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
    overscroll-behavior: contain;
    user-select: none;
    cursor: grab;
  }

  .menu-image-stage:active {
    cursor: grabbing;
  }

  .menu-page-image {
    width: auto;
    max-width: min(94vw, 1020px);
    max-height: min(84vh, 820px);
    object-fit: contain;
    display: block;
    background: transparent;
    border: none;
    border-radius: 6px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.44);
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
  }

  .menu-page-image.menu-page-next {
    animation: menu-page-swipe-next 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .menu-page-image.menu-page-prev {
    animation: menu-page-swipe-prev 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes menu-page-swipe-next {
    0% {
      transform: translateX(26px);
      opacity: 0.78;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes menu-page-swipe-prev {
    0% {
      transform: translateX(-26px);
      opacity: 0.78;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .menu-image-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 18px;
    border-top: none;
    background: transparent;
    pointer-events: none;
  }

  .menu-image-nav {
    pointer-events: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 74, 0.55);
    background: rgba(6, 6, 6, 0.62);
    color: var(--cream);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .menu-image-nav:hover {
    background: rgba(18, 18, 18, 0.9);
    border-color: var(--gold-accent);
    transform: translateY(-1px);
  }

  .menu-image-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
  }

  .menu-page-counter {
    pointer-events: auto;
    min-width: 70px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(6, 6, 6, 0.58);
    border: 1px solid rgba(212, 168, 74, 0.45);
    border-radius: 999px;
    padding: 7px 12px;
  }                         

  body.book-modal-open {
    overflow: hidden;
  }

  @media (max-width: 820px) {
    .menu-book-modal {
      padding: 10px;
      align-items: center;
      overflow: hidden;
    }

    .menu-book-dialog {
      width: auto;
      max-width: 96vw;
      max-height: 90vh;
      margin: 0 auto;
    }

    .menu-book-close {
      top: 8px;
      right: 8px;
      width: 34px;
      height: 34px;
      font-size: 1.2rem;
    }

    .menu-book-opened { max-height: none; }

    .menu-page-cover {
      height: clamp(150px, 28vh, 220px);
      transform: none;
      box-shadow: none;
    }

    .menu-book-modal.is-open .menu-page-cover {
      transform: none;
    }

    .menu-page-cover::after {
      display: none;
    }

    .menu-page-content {
      min-height: 0;
      border: none;
    }

    .menu-page-head {
      padding: 12px 14px;
      gap: 8px;
      flex-direction: column;
      align-items: flex-start;
    }

    .menu-page-head h3 {
      font-size: clamp(1rem, 4.8vw, 1.22rem);
    }

    .menu-page-head a {
      font-size: 0.56rem;
      letter-spacing: 0.1em;
      padding: 8px 10px;
    }

    .menu-image-stage {
      padding: 0;
    }

    .menu-page-image {
      max-width: 94vw;
      max-height: min(76vh, 560px);
      border-radius: 6px;
    }

    .menu-image-controls {
      bottom: 10px;
      gap: 10px;
      padding: 0 12px;
    }

    .menu-image-nav {
      width: 40px;
      height: 40px;
      font-size: 1.08rem;
    }

    .menu-page-counter {
      min-width: 60px;
      font-size: 0.64rem;
      letter-spacing: 0.1em;
      padding: 6px 10px;
    }
  }

  @media (max-width: 520px) {
    .menu-book-modal {
      padding: 6px;
    }

    .menu-book-dialog {
      width: auto;
      max-width: 96vw;
      margin: 0 auto;
    }

    .menu-book-close {
      top: 6px;
      right: 6px;
      width: 32px;
      height: 32px;
      font-size: 1.05rem;
    }

    .menu-page-cover {
      height: clamp(120px, 24vh, 170px);
    }

    .menu-page-head {
      display: none;
    }

    .menu-page-head a {
      font-size: 0.52rem;
      padding: 7px 9px;
    }

    .menu-image-stage {
      padding: 0;
    }

    .menu-page-image {
      max-width: 96vw;
      max-height: min(70vh, 480px);
    }

    .menu-image-nav {
      width: 36px;
      height: 36px;
      font-size: 1rem;
    }

    .menu-image-controls {
      bottom: 8px;
      gap: 8px;
      padding: 0 8px;
    }

    .menu-page-counter {
      min-width: 52px;
      font-size: 0.6rem;
    }
  }



/* ---
Img like a book design css 
--- */

.book-showcase-section {
    padding: 22px clamp(16px, 4vw, 60px) 48px;
}

.book-showcase-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.book-single{
    width: 286px;
    transform: none;
    padding-bottom: 0;
    
}

.book-ctas {
    margin-top: 0;
    opacity: 1;
    animation: none;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    transform: none;
}

.book-ctas .btn-primary.book-btn,
.book-ctas .btn-outline.book-btn {
    width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.book-ctas .btn-primary.book-btn {
    background: linear-gradient(135deg, #e6be65 0%, #d4a84a 55%, #b98a2f 100%);
    border: 1px solid rgba(255, 224, 150, 0.45);
    color: var(--deep-forest);
    box-shadow: 0 10px 24px rgba(161, 120, 34, 0.25);
}

.book-ctas .btn-outline.book-btn {
    background: rgba(4, 4, 4, 0.96);
    border: 1px solid rgba(200, 165, 92, 0.46);
    color: var(--gold-accent);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42);
}

.book-ctas .btn-primary.book-btn:hover {
    background: linear-gradient(135deg, #edcc78 0%, #ddb45a 55%, #c49538 100%);
    border-color: rgba(255, 224, 150, 0.62);
    box-shadow: 0 14px 30px rgba(161, 120, 34, 0.35);
}

.book-ctas .btn-outline.book-btn:hover {
    background: rgba(12, 12, 12, 0.98);
    border-color: rgba(212, 168, 74, 0.7);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.book-btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 18px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.book-ctas .btn-outline.book-btn .book-btn-icon {
    filter: brightness(0) saturate(100%) invert(77%) sepia(32%) saturate(583%) hue-rotate(3deg) brightness(95%) contrast(89%);
}

.book-btn span {
    display: inline-block;
    line-height: 1;
}

.book-container-new {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-perspective: 600px;
    perspective: 600px;
    padding: 14px 10px;
    overflow: visible;
}

.book-big-new {
    width: 100%;
    padding-top: 145%;
    position: relative;
    overflow: visible;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(-20deg);
    transform: rotateY(-20deg);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.book-big-new:hover {
    -webkit-transform: rotateY(-25deg);
    transform: rotateY(-25deg);
}

.book-big-new> :first-child {
    position: absolute;
    top: 0;
    left: 0;
    background-color: red;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    -webkit-transform: translateZ(25px);
    transform: translateZ(25px);
    background-color: #01060f;
    border-radius: 0 2px 2px 0;
}

.book-big-new::before {
    position: absolute;
    content: ' ';
    background-color: #6b5536;
    right: -8%;
    top: 3%;
    width: calc(100% - 80%);
    height: 94%;
    transform: rotateY(90deg);
    background: linear-gradient(
      90deg,
      #c9b896 0%,
      #d7c9aa 8%,
      #cdbb98 16%,
      #d9ccaf 24%,
      #ccb996 32%,
      #d6c7a6 40%,
      #c8b491 48%,
      #d4c3a2 56%,
      #c7b28f 64%,
      #d1bf9d 72%,
      #c5ae89 80%,
      #cfbb97 88%,
      #c3ab86 100%
    );
    box-shadow: inset 0 0 8px rgba(60, 40, 18, 0.22);
}

.book-big-new::after {
    position: absolute;
    top: 0;
    left: 0;
    content: ' ';
    width: 100%;
    height: 100%;
    -webkit-transform: translateZ(-25px);
    transform: translateZ(-25px);
    background-color: #6b5536;
    border-radius: 0 2px 2px 0;
    -webkit-box-shadow: -20px 0 20px 0px #666666;
    box-shadow: -20px 0 20px 0px #666666;
}

@media (max-width: 768px) {
    .book-showcase-wrap {
        gap: 24px;
    }

    .book-single {
        width: 238px;
        transform: none;
        padding-bottom: 0;
    }

    .book-ctas {
        transform: none;
    }

    .book-ctas .btn-primary,
    .book-ctas .btn-outline {
        width: 190px;
        padding: 13px 14px;
        letter-spacing: 0.14em;
    }

    .book-btn-icon {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }
}

@media (max-width: 465px) and (max-height: 642px) {
    .book-showcase-wrap {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .book-single {
        width: min(58vw, 220px);
    }

    .book-ctas {
        width: 100%;
        margin-top: 2px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
    }

    .book-ctas .btn-primary.book-btn,
    .book-ctas .btn-outline.book-btn {
        width: min(43vw, 170px);
        padding: 12px 8px;
        letter-spacing: 0.1em;
        font-size: 0.64rem;
    }
}
