:root {
      --ink: #100d0a;
      --ink-soft: #1a1511;
      --paper: #f6efe4;
      --paper-deep: #eadcc9;
      --gold: #c99638;
      --gold-light: #e4bd6a;
      --red: #8f2027;
      --red-dark: #68141a; 
      --green: #153d2b;
      --white: #fffdf8;
      --muted: #70675f;
      --line: rgba(201, 150, 56, .34);
      --shadow: 0 24px 70px rgba(22, 12, 7, .18);
      --radius: 22px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
    html { scroll-behavior: smooth; }
    body {
      font-family: "DM Sans", sans-serif;
      color: var(--ink);
      background: var(--paper);
      overflow-x: hidden;
    }
    img { display: block; width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }
    section { scroll-margin-top: 90px; }
    .container { width: min(1480px, calc(100% - 40px)); margin: 0 auto; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--gold);
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 42px; height: 1px; background: currentColor; }
    .section-title {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.5rem, 5vw, 4.7rem);
      line-height: .98;
      font-weight: 600;
      letter-spacing: -.035em;
    }
    .section-copy { color: var(--muted); line-height: 1.85; font-size: 1rem; }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 1000;
      transition: .35s ease;
    }
    .site-header.scrolled {
      background: rgba(15, 12, 9, .94);
      backdrop-filter: blur(16px);
      box-shadow: 0 10px 36px rgba(0,0,0,.22);
    }
    .nav-wrap {
      height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      color: var(--white);
      min-width: 190px;
    }
    .brand-main {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.65rem;
      font-weight: 600;
      line-height: .78;
      letter-spacing: .025em;
      text-transform: uppercase;
    }
    .brand-sub {
      margin-top: 9px;
      color: var(--gold-light);
      font-size: .55rem;
      letter-spacing: .24em;
      text-transform: uppercase;
    }
    .nav-links { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.88); }
    .nav-links a { position: relative; font-size: .93rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
    .nav-links a::after {
      content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: .25s;
    }
    .nav-links a:hover::after { right: 0; }
    .header-cta {
      padding: 13px 18px;
      border-radius: 999px;
      background: var(--red);
      color: white;
      font-size: .92rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .07em;
      white-space: nowrap;
    }
    .menu-toggle {
      display: none;
      width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.06); color: white;
      align-items: center; justify-content: center; cursor: pointer;
    }

    .hero {
      min-height: 100svh;
      display: grid;
      align-items: end;
      position: relative;
      color: white;
      background: #0f0b08;
      isolation: isolate;
    }
    .hero::before {
      content: ""; position: absolute; inset: 0; z-index: -3;
      background-image: url('gallery/tandoori-palace-08.webp');
      background-size: cover; background-position: center;
      transform: scale(1.02);
    }
    .hero::after {
      content: ""; position: absolute; inset: 0; z-index: -2;
      background:
        linear-gradient(90deg, rgba(5,4,3,.92) 0%, rgba(5,4,3,.74) 34%, rgba(5,4,3,.14) 67%, rgba(5,4,3,.3) 100%),
        linear-gradient(0deg, rgba(5,4,3,.78) 0%, transparent 45%);
    }
    .hero-pattern {
      position: absolute; inset: 0; z-index: -1; opacity: .1;
      background-image: radial-gradient(circle at 20% 30%, var(--gold) 0 1px, transparent 1px), radial-gradient(circle at 70% 70%, var(--gold) 0 1px, transparent 1px);
      background-size: 36px 36px, 42px 42px;
      mask-image: linear-gradient(90deg, #000, transparent 58%);
    }
    .hero-inner { padding: 170px 0 82px; }
    .hero-content { max-width: 680px; }
    .hero h1 {
      margin-top: 22px;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(4rem, 8vw, 7rem);
      line-height: .88;
      font-weight: 600;
      letter-spacing: -.045em;
    }
    .hero h1 span { color: var(--gold-light); }
    .hero-copy { max-width: 580px; margin-top: 28px; font-size: 1.08rem; line-height: 1.75; color: rgba(255,255,255,.82); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      min-height: 52px; padding: 0 23px; border-radius: 4px; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: .25s ease;
    }
    .btn-primary { background: var(--red); color: white; }
    .btn-primary:hover { transform: translateY(-2px); background: #a32931; }
    .btn-outline { border: 1px solid rgba(255,255,255,.5); color: white; }
    .btn-outline:hover { background: white; color: var(--ink); }
    .hero-meta {
      margin-top: 64px; display: flex; flex-wrap: wrap; gap: 34px; color: rgba(255,255,255,.7); font-size: .84rem;
    }
    .hero-meta div { display: flex; align-items: center; gap: 10px; }
    .hero-meta i { color: var(--gold-light); }

    .intro { padding: 115px 0; position: relative; overflow: hidden; }
    .intro::before {
      content: ""; position: absolute; width: 460px; height: 460px; right: -200px; top: -100px; border: 1px solid rgba(143,32,39,.09); border-radius: 50%; box-shadow: 0 0 0 55px rgba(143,32,39,.035), 0 0 0 110px rgba(143,32,39,.02);
    }
    .intro-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 86px; align-items: center; }
    .intro-visual { position: relative; padding: 0 45px 45px 0; }
    .intro-main { height: 620px; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow); }
    .intro-mini {
      position: absolute; right: 0; bottom: 0; width: 48%; height: 250px; object-fit: cover; border: 10px solid var(--paper); box-shadow: var(--shadow);
    }
    .intro-badge {
      position: absolute; left: -36px; bottom: 72px; width: 142px; height: 142px; border-radius: 50%; background: var(--red); color: white; display: grid; place-items: center; text-align: center; box-shadow: var(--shadow); transform: rotate(-7deg);
    }
    .intro-badge strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 2.2rem; line-height: .8; }
    .intro-badge span { display: block; margin-top: 9px; font-size: .63rem; line-height: 1.3; letter-spacing: .13em; text-transform: uppercase; }
    .intro-copy .section-title { margin: 18px 0 28px; }
    .intro-copy p + p { margin-top: 18px; }
    .feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; padding-top: 30px; border-top: 1px solid rgba(16,13,10,.12); }
    .feature-row i { color: var(--red); font-size: 1.25rem; margin-bottom: 10px; }
    .feature-row strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.22rem; }
    .feature-row span { display: block; color: var(--muted); font-size: .76rem; margin-top: 4px; }

    .specialities { padding: 110px 0 120px; background: var(--ink); color: white; position: relative; }
    .specialities::before { content: ""; position: absolute; inset: 0; opacity: .055; background-image: radial-gradient(circle at center, var(--gold) 0 1px, transparent 1px); background-size: 24px 24px; }
    .section-head { position: relative; display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
    .section-head p { max-width: 470px; color: rgba(255,255,255,.58); line-height: 1.8; }
    .speciality-grid { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
    .dish { position: relative; min-height: 390px; overflow: hidden; background: #211914; }
    .dish:nth-child(1) { grid-column: span 5; }
    .dish:nth-child(2) { grid-column: span 3; }
    .dish:nth-child(3) { grid-column: span 4; }
    .dish:nth-child(4), .dish:nth-child(5) { grid-column: span 6; min-height: 320px; }
    .dish img { height: 100%; object-fit: cover; transition: transform .7s ease; }
    .dish:hover img { transform: scale(1.055); }
    .dish::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(7,5,4,.95)); }
    .dish-content { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 23px; }
    .dish-content small { color: var(--gold-light); text-transform: uppercase; letter-spacing: .14em; font-size: .65rem; font-weight: 700; }
    .dish-content h3 { margin-top: 7px; font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 600; }
    .dish-content p { margin-top: 6px; color: rgba(255,255,255,.68); font-size: .82rem; line-height: 1.5; max-width: 360px; }

    .experience { padding: 120px 0; background: var(--white); }
    .experience-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
    .experience-copy .section-title { margin: 18px 0 26px; }
    .experience-points { margin-top: 34px; display: grid; gap: 18px; }
    .experience-point { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
    .experience-point .icon { width: 46px; height: 46px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--red); }
    .experience-point h3 { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; }
    .experience-point p { color: var(--muted); font-size: .86rem; line-height: 1.6; margin-top: 3px; }
    .mosaic { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: 260px 260px; gap: 16px; }
    .mosaic img { height: 100%; object-fit: cover; }
    .mosaic img:first-child { grid-row: 1 / 3; }

    .review-band { background: var(--red); color: white; padding: 90px 0; position: relative; overflow: hidden; }
    .review-band::before { content: "“"; position: absolute; right: 5%; top: -80px; font-family: Georgia, serif; font-size: 20rem; color: rgba(255,255,255,.05); }
    .reviews-grid { display: grid; grid-template-columns: 1.1fr repeat(2, 1fr); gap: 50px; align-items: start; }
    .review-lead h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: .92; font-weight: 600; }
    .review-lead p { margin-top: 20px; color: rgba(255,255,255,.72); line-height: 1.7; }
    .stars { color: #ffd172; letter-spacing: .16em; font-size: .88rem; }
    .review-card blockquote { margin-top: 18px; font-family: "Cormorant Garamond", serif; font-size: 1.55rem; line-height: 1.35; }
    .review-card span { display: block; margin-top: 20px; color: rgba(255,255,255,.64); font-size: .8rem; }

    .visit { padding: 0; background: var(--paper); }
    .visit-grid { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 610px; }
    .visit-info { padding: 90px max(40px, calc((100vw - 1180px)/2)); padding-right: 70px; display: flex; flex-direction: column; justify-content: center; }
    .visit-info .section-title { margin: 18px 0 30px; }
    .info-list { display: grid; gap: 22px; }
    .info-item { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
    .info-item i { color: var(--red); margin-top: 4px; }
    .info-item strong { display: block; font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; }
    .info-item span, .info-item a { display: block; color: var(--muted); margin-top: 5px; line-height: 1.6; }
    .hours { margin-top: 26px; padding: 22px; background: rgba(255,255,255,.72); border-left: 3px solid var(--gold); }
    .hours-row { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .84rem; }
    .hours-row + .hours-row { margin-top: 9px; }
    .map-wrap { min-height: 520px; background: #ddd; }
    .map-wrap iframe { width: 100%; height: 100%; min-height: 610px; border: 0; filter: saturate(.78) contrast(.95); }

     

    .footer { background: var(--green); color: white; padding: 54px 0 24px; }
    .footer-top { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; align-items: start; }
    .footer-brand .brand-main { font-size: 2rem; }
    .footer-brand p { max-width: 420px; margin-top: 18px; color: rgba(255,255,255,.66); line-height: 1.7; }
    .footer h4 { color: var(--gold-light); text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; margin-bottom: 17px; }
    .footer-links { display: grid; gap: 10px; color: rgba(255,255,255,.76); font-size: .86rem; }
    .socials { display: flex; gap: 10px; margin-top: 20px; }
    .socials a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; border-radius: 50%; }
    .footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.5); font-size: .74rem; }
    .footer-bottom a { color: rgba(255,255,255,.74); }


    .back-to-top {
      position: fixed;
      right: 24px;
      bottom: 86px !important;
      width: 56px;
      height: 56px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 50%;
      background: var(--red);
      color: white;
      display: grid;
      place-items: center;
      cursor: pointer;
      z-index: 1200;
      box-shadow: 0 14px 34px rgba(50,10,12,.28);
      opacity: 0;
      visibility: hidden;
      transform: translateY(14px);
      transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .25s ease;
    }
    .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
    .back-to-top:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }

    

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 2000;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    padding: 110px 24px 50px;
    background: #0e0b08;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform .35s ease,
      opacity .35s ease,
      visibility .35s ease;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 2100;
  }

  .site-header.menu-open,
  .site-header.scrolled.menu-open {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .intro-grid,
  .experience-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    order: -1;
  }

  .experience-grid {
    gap: 50px;
  }

  .visit-info {
    padding: 80px 30px;
  }

  .map-wrap iframe {
    min-height: 480px;
  }


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

  .review-lead {
    grid-column: 1 / -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

    @media (max-width: 720px) {
      .container { width: min(100% - 28px, 1180px); }
      .nav-wrap { height: 74px; }
      .brand-main { font-size: 1.42rem; }
      .hero { min-height: 780px; }
      .hero::after { background: linear-gradient(90deg, rgba(5,4,3,.9), rgba(5,4,3,.38)), linear-gradient(0deg, rgba(5,4,3,.88), transparent 65%); }
      .hero-inner { padding: 150px 0 60px; }
      .hero h1 { font-size: clamp(3.35rem, 16vw, 5rem); }
      .hero-meta { gap: 16px; margin-top: 42px; flex-direction: column; }
      .intro, .experience { padding: 85px 0; }
      .intro-grid { gap: 55px; }
      .intro-visual { padding: 0 22px 28px 0; }
      .intro-main { height: 440px; }
      .intro-mini { height: 170px; border-width: 7px; }
      .intro-badge { width: 110px; height: 110px; left: -6px; bottom: 42px; }
      .intro-badge strong { font-size: 1.7rem; }
      .feature-row { grid-template-columns: 1fr; }
      .specialities { padding: 85px 0; }
      .section-head { display: block; }
      .section-head p { margin-top: 20px; }
      .speciality-grid { display: grid; grid-template-columns: 1fr; }
      .dish, .dish:nth-child(n) { grid-column: auto; min-height: 340px; }
      .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 180px; }
      .mosaic img:first-child { grid-column: 1 / -1; grid-row: auto; }
      .reviews-grid { grid-template-columns: 1fr; gap: 42px; }
      .review-lead { grid-column: auto; }
       
      .footer-top { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; }
      .footer-bottom { flex-direction: column; }
    }

    .floating-whatsapp {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 1100;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 56px;
      padding: 0 20px;
      border-radius: 999px;
      background: #25d366;
      color: #fff;
      box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }
    .floating-whatsapp i { font-size: 1.35rem; }
    .floating-whatsapp:hover {
      transform: translateY(-3px);
      background: #1fbe58;
      box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
    }
    .floating-whatsapp:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }


    @media (max-width: 600px) {
      .floating-whatsapp {
        right: 18px;
        bottom: 18px;
        width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        justify-content: center;
      }
      .floating-whatsapp span { display: none; }
      .back-to-top { right: 18px; bottom: 86px; }
    }

/* ------------------------------------------------------------
   Header logo and sticky-header behaviour
   ------------------------------------------------------------ */

.site-header {
  height: 88px;
  transition:
    height .35s ease,
    background .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease;
}

.site-header.scrolled {
  height: 78px;
}

.nav-wrap {
  height: 88px;
  transition: height .35s ease;
}

.site-header.scrolled .nav-wrap {
  height: 78px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  min-width: 190px;
  color: var(--white);
  text-decoration: none;
}

.logo,
.brand-logo {
  position: absolute;
  top: 22px;
  left: 0;
  width: 180px !important;
  height: auto;
  display: block;
  object-fit: contain;
  transform-origin: top left;
  transition:
    top .35s ease,
    width .35s ease,
    filter .35s ease,
    transform .35s ease;
}

.site-header.scrolled .logo,
.site-header.scrolled .brand-logo {
  top: 2px;
  width: 84px !important;
   
}

.hero-logo {
  display: block;
  width: min(300px, 70vw);
  height: auto;
  margin: 0 0 28px;
}

.footer-logo {
  display: block;
  width: 210px;
  height: auto;
  margin-bottom: 22px;
  
}

@media (max-width: 980px) {
  .brand {
    min-width: 150px;
  }

  .logo,
  .brand-logo {
    top: 10px;
    width: 178px !important;
  }

  .site-header.scrolled .logo,
  .site-header.scrolled .brand-logo {
    top: 8px;
    width: 82px !important;
  }
}

@media (max-width: 720px) {
  section {
    scroll-margin-top: 74px;
  }

  .site-header,
  .site-header.scrolled,
  .nav-wrap,
  .site-header.scrolled .nav-wrap {
    height: 74px;
  }

  .brand {
    min-width: 116px;
  }

  .logo,
  .brand-logo {
    top: 7px;
    width: 160px !important;
  }

  .site-header.scrolled .logo,
  .site-header.scrolled .brand-logo {
    top: 8px;
    width: 72px !important;
  }

  .hero-logo {
    width: min(240px, 72vw);
    margin-bottom: 22px;
  }

  .footer-logo {
    width: 180px;
  }
}

/* Mobile navigation safety */
@media (max-width: 980px) {
  .site-header.menu-open .logo,
  .site-header.menu-open .brand-logo,
  .site-header.scrolled.menu-open .logo,
  .site-header.scrolled.menu-open .brand-logo {
    opacity: 0;
    pointer-events: none;
  }

  .site-header.menu-open .menu-toggle {
    position: fixed;
    top: 14px;
    right: 20px;
  }
}

/* =========================================================
   Gallery
========================================================= */

.gallery-section {
  padding: 110px 0 120px;
  background: var(--ink);
  color: var(--white);
}

.gallery-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.gallery-heading .section-title {
  margin-top: 18px;
}

.gallery-heading .section-copy {
  max-width: 600px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .62);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 245px;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 1;
  min-width: 0;
  overflow: hidden;
  background: var(--ink-soft);
  cursor: zoom-in;
}

.gallery-item-large {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 8;
  grid-row: span 1;
}

.gallery-item-tall {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform .7s ease,
    opacity .4s ease;
}

.gallery-item::after {
  content: "\\f00e";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Font Awesome 6 Free";
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  background: rgba(16, 13, 10, .34);
  opacity: 0;
  transition: opacity .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item:hover::after {
  opacity: 1;
}

.glightbox-container .gslide-description,
.glightbox-container .gdesc-inner,
.glightbox-container .gslide-title,
.glightbox-container .gslide-desc {
  display: none !important;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
    gap: 12px;
  }

  .gallery-item {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-large {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .gallery-item-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-section {
    padding: 76px 0 82px;
  }

  .gallery-heading {
    margin-bottom: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 8px;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide,
  .gallery-item-tall {
    min-width: 0;
    min-height: 0;
  }

  .gallery-item-large {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .gallery-item-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
}

/* =========================================================
   WhatsApp reservation
========================================================= */

.reservation-section {
  position: relative;
  padding: 115px 0;
  overflow: hidden;
  background:
    linear-gradient(
      115deg,
      rgba(21, 61, 43, .98),
      rgba(12, 39, 28, .98)
    );
  color: var(--white);
}

.reservation-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: -220px;
  border: 1px solid rgba(228, 189, 106, .12);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(228, 189, 106, .035),
    0 0 0 130px rgba(228, 189, 106, .02);
  pointer-events: none;
}

.reservation-grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 82px;
  align-items: start;
}

.reservation-intro {
  position: sticky;
  top: 130px;
}

.reservation-intro .section-title {
  margin: 18px 0 26px;
  color: var(--white);
}

.reservation-intro .section-copy {
  color: rgba(255, 255, 255, .7);
}

.reservation-points {
  display: grid;
  gap: 17px;
  margin-top: 34px;
}

.reservation-points div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
  align-items: start;
  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
  line-height: 1.6;
}

.reservation-points i {
  margin-top: 4px;
  color: var(--gold-light);
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 38px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.form-field {
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(16, 13, 10, .16);
  border-radius: 0;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: .92rem;
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.form-field input,
.form-field select {
  min-height: 54px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 130px;
  padding: 15px;
  resize: vertical;
  line-height: 1.6;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 56, .13);
  background: var(--white);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(112, 103, 95, .72);
}

.form-field .flatpickr-wrapper {
  display: block;
  width: 100%;
}

.form-field .flatpickr-input {
  width: 100%;
}

.reservation-submit {
  grid-column: 1 / -1;
  min-height: 58px;
  padding: 14px 22px;
  border: 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.reservation-submit i {
  margin-right: 9px;
  font-size: 1.08rem;
}

.reservation-submit:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 14px 30px rgba(104, 20, 26, .22);
}

.reservation-submit:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.reservation-note {
  grid-column: 1 / -1;

  color: var(--muted);
  font-size: .73rem;
  line-height: 1.6;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  background: rgba(143, 32, 39, .07);
  color: var(--red-dark);
  font-size: .82rem;
  line-height: 1.5;
}

.form-status.show {
  display: block;
}

@media (max-width: 980px) {
  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reservation-intro {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .reservation-section {
    padding: 82px 0;
  }

  .reservation-grid {
    gap: 36px;
  }

  .reservation-form {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 26px 20px;
  }

  .form-field,
  .form-field-full,
  .reservation-submit,
  .reservation-note,
  .form-status {
    grid-column: 1;
    width: 100%;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }

  .reservation-submit {
    min-height: 58px;
    white-space: normal;
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  .reservation-section {
    padding: 70px 0;
  }

  .reservation-form {
    padding: 22px 16px;
  }
}