  :root {
    --brown-dark: #2C1A0E;
    --brown-mid: #4A2C17;
    --brown-light: #7B4A2D;
    --cream: #F5ECD7;
    --cream-light: #FAF5EB;
    --cream-dark: #E8D5B0;
    --gold: #C9A84C;
    --gold-light: #E2C06E;
    --gold-dark: #A07830;
    --white: #FFFFFF;
    --text-dark: #1A0F07;
    --text-mid: #4A3728;
    --text-light: #8B6E55;
    --shadow: rgba(44, 26, 14, 0.15);
    --shadow-deep: rgba(44, 26, 14, 0.35);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream-light);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  .page-content {
    padding-top: 72px;
  }

  /* ── NAVBAR ─────────────────────────────── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 0 5%;
    background: rgba(44, 26, 14, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    transition: all 0.3s ease;
  }
  .nav-logo {
    display: flex; flex-direction: row;
    align-items: center; gap: 10px; line-height: 1.1;
    text-decoration: none;
  }
  .nav-logo-img {
    height: 52px; width: 52px;
    object-fit: contain; flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(201,168,76,0.3));
  }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .nav-logo .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--gold-light); letter-spacing: 0.02em;
  }
  .nav-logo .logo-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.72rem; font-weight: 300;
    color: var(--cream-dark); letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .nav-links { display: flex; gap: 2.4rem; list-style: none; }
  .nav-links a {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--cream);
    text-decoration: none; position: relative; transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px; background: var(--gold); transition: width 0.35s ease;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--gold); color: var(--brown-dark) !important;
    padding: 8px 20px; border-radius: 2px;
    font-weight: 600 !important; transition: background 0.3s ease !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; }
  .nav-cta::after { display: none !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: transparent; border: 0; padding: 0; }
  .hamburger span { width: 24px; height: 2px; background: var(--cream); display: block; transition: all 0.3s; }

  /* ── HERO ────────────────────────────────── */
  /* #hero {
    height: 100vh; min-height: 700px;
    position: relative; display: flex;
    align-items: center; justify-content: center; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(160deg, rgba(44,26,14,0.72) 0%, rgba(44,26,14,0.45) 50%, rgba(74,44,23,0.78) 100%),
      url('https://images.unsplash.com/photo-1565557623262-b51c2513a641?w=1800&q=85') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 12s ease-in-out infinite alternate;
  }
  @keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 820px; padding: 0 24px;
    animation: heroFadeUp 1.2s ease both;
  }
  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-badge {
    display: inline-block; border: 1px solid var(--gold);
    color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.25em;
    text-transform: uppercase; padding: 6px 22px; border-radius: 50px;
    margin-bottom: 24px; font-family: 'Jost', sans-serif; font-weight: 400;
    backdrop-filter: blur(4px); background: rgba(201,168,76,0.1);
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800; line-height: 1.12; color: var(--white);
    margin-bottom: 20px; text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  }
  .hero-title em { color: var(--gold-light); font-style: italic; }
  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 300; color: var(--cream-dark);
    margin-bottom: 42px; line-height: 1.6; letter-spacing: 0.02em;
  }
  .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--brown-dark);
    padding: 14px 36px; border-radius: 3px;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    border: 2px solid var(--gold); transition: all 0.3s ease; display: inline-block;
  }
  .btn-primary:hover {
    background: transparent; color: var(--gold-light);
    box-shadow: 0 0 30px rgba(201,168,76,0.3);
  }
  .btn-outline {
    background: transparent; color: var(--white);
    padding: 14px 36px; border-radius: 3px;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.55); transition: all 0.3s ease; display: inline-block;
  }
  .btn-outline:hover {
    border-color: var(--gold); color: var(--gold-light);
    background: rgba(201,168,76,0.08);
  }
  .hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  }
  .hero-scroll span { font-size: 0.65rem; letter-spacing: 0.25em; color: var(--cream-dark); text-transform: uppercase; }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.6) translateY(-4px); }
    50% { opacity: 1; transform: scaleY(1) translateY(4px); }
  } */
#hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(44,26,14,0.72) 0%, rgba(44,26,14,0.45) 50%, rgba(74,44,23,0.78) 100%);
  z-index: 1;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; padding: 0 24px;
  animation: heroFadeUp 1.2s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block; border: 1px solid var(--gold);
  color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; padding: 6px 22px; border-radius: 50px;
  margin-bottom: 24px; font-family: 'Jost', sans-serif; font-weight: 400;
  backdrop-filter: blur(4px); background: rgba(201,168,76,0.1);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.12; color: var(--white);
  margin-bottom: 20px; text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.9vw, 1.45rem);
  font-weight: 900; color: var(--cream-dark);
  margin-bottom: 42px; line-height: 1.6; letter-spacing: 0.02em;
}
.hero-sub{
  color: #1A0F07;
}
.hero-sub{
  font: bold;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--brown-dark);
  padding: 14px 36px; border-radius: 3px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--gold); transition: all 0.3s ease; display: inline-block;
}
.btn-primary:hover {
  background: transparent; color: var(--gold-light);
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 36px; border-radius: 3px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.55); transition: all 0.3s ease; display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.25em; color: var(--cream-dark); text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6) translateY(-4px); }
  50% { opacity: 1; transform: scaleY(1) translateY(4px); }
}

  /* ── SECTION UTILITIES ───────────────────── */
  section { padding: 100px 5%; }
  .section-label {
    font-size: 0.7rem; letter-spacing: 0.3em; color: var(--gold);
    text-transform: uppercase; font-weight: 600;
    display: block; margin-bottom: 14px; font-family: 'Jost', sans-serif;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: var(--brown-dark); line-height: 1.2; margin-bottom: 16px;
  }
  .section-title em { font-style: italic; color: var(--gold-dark); }
  .section-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; color: var(--text-mid); line-height: 1.75; max-width: 600px;
  }
  .gold-divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    margin: 20px 0;
  }
  .gold-divider.center { margin: 20px auto; }
  .fade-up {
    opacity: 0; transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ── STATS BAR ───────────────────────────── */
  #stats { background: var(--brown-dark); padding: 48px 5%; }
  .stats-grid { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
  .stat-item { text-align: center; padding: 20px 56px; position: relative; }
  .stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 20%;
    height: 60%; width: 1px; background: rgba(201,168,76,0.3);
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 6px;
  }
  .stat-label { font-size: 0.75rem; letter-spacing: 0.18em; color: var(--cream-dark); text-transform: uppercase; font-weight: 400; }

  /* ── ABOUT ───────────────────────────────── */
  #stats{
    margin-bottom: 80px;
  }
  #about {
    background: var(--cream-light);
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-img-wrap { position: relative; height: 580px; }
  .about-img-main {
    width: 82%; height: 88%; object-fit: cover;
    position: absolute; bottom: 0; right: 0; border-radius: 4px;
    box-shadow: 0 24px 60px var(--shadow-deep);
  }
  .about-img-accent {
    width: 46%; height: auto; aspect-ratio: 1 / 1; object-fit: contain;
    position: absolute; top: 0; left: 0; border-radius: 4px;
    /* box-shadow: 0 16px 40px var(--shadow-deep); border: 4px solid var(--cream-light); */
  }
  .about-gold-frame {
    position: absolute; bottom: 24px; left: 20px;
    background: var(--gold); color: var(--brown-dark);
    padding: 18px 28px; border-radius: 4px;
    font-family: 'Playfair Display', serif; z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }
  .about-gold-frame .frame-num { font-size: 2.2rem; font-weight: 800; display: block; line-height: 1; }
  .about-gold-frame .frame-txt { font-size: 0.8rem; font-weight: 400; letter-spacing: 0.05em; }
  .about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
  .badge {
    display: flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid var(--cream-dark);
    padding: 8px 16px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 500; color: var(--text-mid);
    box-shadow: 0 2px 12px var(--shadow); transition: all 0.3s;
  }
  
  .badge:hover {
    border-color: var(--gold); color: var(--brown-dark);
    box-shadow: 0 4px 20px rgba(201,168,76,0.2); transform: translateY(-2px);
  }
  .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

  /* ── SERVICES ────────────────────────────── */
  #services { background: var(--brown-dark); }
  #services .section-title { color: var(--cream); }
  #services .section-label { color: var(--gold); }
  #services .section-desc { color: var(--cream-dark); }
  .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
  .service-card {
    border-radius: 6px; overflow: hidden; position: relative; height: 520px;
    transition: transform 0.4s ease, box-shadow 0.4s ease; cursor: pointer;
  }
  .service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
  .service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
  .service-card:hover img { transform: scale(1.07); }
  .service-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(30,14,4,0.93) 0%, rgba(30,14,4,0.4) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 44px 36px;
  }
  .service-tag { font-size: 0.66rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
  .service-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
  .service-desc { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(245,236,215,0.85); line-height: 1.6; margin-bottom: 20px; }
  .service-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .pill {
    background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light); font-size: 0.7rem; letter-spacing: 0.06em;
    padding: 4px 12px; border-radius: 50px;
  }
  .btn-service {
    display: inline-block; background: var(--gold); color: var(--brown-dark);
    padding: 11px 28px; border-radius: 3px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none; transition: background 0.3s; border: none; cursor: pointer;
  }
  .btn-service:hover { background: var(--gold-light); }

  /* ── MENU ─────────────────────────────────── */
  #menu { background: var(--cream-light); text-align: center; padding: 100px 5%; }
  .menu-tabs-wrap { margin-top: 48px; display: flex; justify-content: center; }
  .menu-tabs {
    display: inline-flex; gap: 10px;
    background: var(--white); border: 1px solid var(--cream-dark);
    border-radius: 60px; padding: 6px;
    box-shadow: 0 4px 24px var(--shadow);
    flex-wrap: wrap; justify-content: center;
  }
  .menu-tab {
    display: flex; align-items: center; gap: 8px;
    background: transparent; border: none; outline: none;
    padding: 11px 22px; border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text-light); cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  }
  .menu-tab .tab-icon { font-size: 1.05rem; }
  .menu-tab:hover { background: var(--cream-dark); color: var(--brown-dark); transform: translateY(-1px); }
  .menu-tab.active { background: var(--brown-dark); color: var(--gold-light); box-shadow: 0 6px 20px rgba(44,26,14,0.28); font-weight: 600; }
  .menu-items-wrap { margin-top: 48px; position: relative; min-height: 300px; }
  .menu-category { display: none; animation: menuFadeIn 0.45s ease both; }
  .menu-category.active { display: block; }
  @keyframes menuFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  .menu-items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; text-align: left; }
  .mi-card {
    background: var(--white); border-radius: 10px; overflow: hidden;
    border: 1px solid var(--cream-dark); box-shadow: 0 2px 18px var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex; flex-direction: column;
  }
  .mi-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px var(--shadow-deep); border-color: var(--gold-dark); }
  .mi-img-wrap { position: relative; overflow: hidden; height: 190px; flex-shrink: 0; }
  .mi-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
  .mi-card:hover .mi-img-wrap img { transform: scale(1.08); }
  .mi-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--gold); color: var(--brown-dark);
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
    font-family: 'Jost', sans-serif; box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  .mi-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
  .mi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .mi-veg { width: 18px; height: 18px; border: 1.5px solid #2e7d32; border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .mi-veg span { width: 9px; height: 9px; background: #2e7d32; border-radius: 50%; display: block; }
  .mi-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--brown-dark); }
  .mi-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
  .mi-desc { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--text-light); line-height: 1.65; flex: 1; }

    #cat-View-Full-Menu .menu-items-grid{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    text-align:center;
}

#cat-View-Full-Menu .menu-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    background:var(--brown-dark);
    color:var(--gold-light);
    text-decoration:none;
    border-radius:50px;
    font-family:'Jost',sans-serif;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    border:2px solid var(--gold);
    transition:.3s ease;
}

#cat-View-Full-Menu .menu-btn:hover{
    background:var(--gold);
    color:var(--brown-dark);
    transform:translateY(-3px);
}
  
  /* ── WHY CHOOSE US ───────────────────────── */
  #why { background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%); text-align: center; }
  #why .section-title { color: var(--cream); }
  #why .section-label { color: var(--gold); }
  #why .section-desc { color: var(--cream-dark); margin: 0 auto; }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 60px; }
  .why-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px; padding: 36px 24px; text-align: center; transition: all 0.35s ease;
  }
  .why-card:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
  .why-icon { width: 62px; height: 62px; background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.7rem; box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
  .why-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
  .why-desc { font-size: 0.82rem; color: rgba(245,236,215,0.7); line-height: 1.6; }

  /* ── GALLERY ─────────────────────────────── */
  #gallery { background: var(--brown-dark); text-align: center; }
  #gallery .section-title { color: var(--cream); }
  #gallery .section-label { color: var(--gold); }
  .gallery-tabs { display: flex; gap: 8px; justify-content: center; margin: 36px 0; flex-wrap: wrap; }
  .tab-btn { background: transparent; border: 1px solid rgba(201,168,76,0.35); color: var(--cream-dark); padding: 8px 22px; border-radius: 50px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 500; transition: all 0.3s; }
  .tab-btn.active, .tab-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--brown-dark); font-weight: 600; }
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 16px; }
  .gallery-item { border-radius: 5px; overflow: hidden; position: relative; cursor: pointer; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; transition: transform 0.5s ease; }
  .gallery-item:nth-child(1) img { min-height: 380px; }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item-overlay { position: absolute; inset: 0; background: rgba(44,26,14,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
  .gallery-item:hover .gallery-item-overlay { background: rgba(44,26,14,0.42); }
  .gallery-item-overlay span { color: var(--gold-light); font-size: 1.8rem; opacity: 0; transform: scale(0.7); transition: all 0.3s; }
  .gallery-item:hover .gallery-item-overlay span { opacity: 1; transform: scale(1); }

   /* ── REVIEWS ─────────────────────────────── */
  /* #reviews { background: var(--cream-light); text-align: center; }
  #reviews .section-desc { margin: 0 auto; }
  .reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; text-align: left; }
  .review-card {
    background: var(--white); border: 1px solid var(--cream-dark);
    border-radius: 6px; padding: 36px; box-shadow: 0 4px 24px var(--shadow);
    transition: all 0.35s ease; position: relative;
  }
  .review-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold-light); opacity: 0.25; position: absolute; top: 12px; left: 28px; line-height: 1; }
  .review-card:hover { box-shadow: 0 12px 40px rgba(74,44,23,0.14); transform: translateY(-4px); border-color: var(--gold-dark); }
  .review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
  .review-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
  .reviewer-row { display: flex; align-items: center; gap: 14px; }
  .reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--brown-dark); flex-shrink: 0; }
  .reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--brown-dark); }
  .reviewer-date { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }

  * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
} */

  /* ============================================
   REVIEWS SECTION — Infinite Marquee
   Drop this into your stylesheet.
   Your HTML needs no changes.
   ============================================ */

/* ── Section ── */
#reviews {
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: #b8860b;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: #b8860b;
  border-radius: 2px;
  margin-bottom: 16px;
}

.gold-divider.center {
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-size: 16px;
  color: #666;
  margin-bottom: 3rem;
}

/* ============================================
   MARQUEE GRID — becomes two scrolling rows
   JS (reviews-marquee.js) groups .row1 and
   .row2 cards into marquee wrappers.
   ============================================ */

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%, black 6%, black 94%, transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%, black 6%, black 94%, transparent 100%
  );
}

/* Each marquee row wrapper (added by JS) */
.marquee-row {
  display: flex;
  overflow: hidden;
  width: 100%;
}

/* The scrolling belt (added by JS) */
.marquee-track {
  display: flex;
  gap: 20px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.marquee-row.scroll-left  .marquee-track { animation: scroll-left  35s linear infinite; }
.marquee-row.scroll-right .marquee-track { animation: scroll-right 32s linear infinite; }

/* Pause all on hover */
/* .reviews-grid:hover .marquee-track {
  animation-play-state: paused;
} */

@keyframes scroll-left  { from { transform: translateX(0);    } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0);    } }

/* ============================================
   REVIEW CARD
   ============================================ */

.review-card {
  flex: 0 0 300px;
  width: 300px;
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.review-stars {
  font-size: 16px;
  color: #f59e0b;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 13.5px;
  color: #444;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.reviewer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #f0e8d8;
  padding-top: 14px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #faeeda;
  color: #854f0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}

.reviewer-date {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

/* ── Fade-up on load ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease 0.1s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  #reviews {
    padding: 4rem 0;
  }

  #reviews .section-label,
  #reviews .section-title,
  #reviews .gold-divider,
  #reviews .section-desc {
    margin-left: 20px;
    margin-right: 20px;
  }

  #reviews .gold-divider.center {
    margin-left: auto;
    margin-right: auto;
  }

  .reviews-grid {
    gap: 16px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  }

  .marquee-track {
    gap: 14px;
  }

  .review-card {
    flex: 0 0 min(72vw, 280px);
    width: min(72vw, 280px);
    min-height: 220px;
    padding: 20px 18px;
    border-radius: 10px;
  }

  .review-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .reviewer-row {
    gap: 9px;
    padding-top: 12px;
  }

  .section-title { font-size: 26px; }
}


  /* ── BOOKING ─────────────────────────────── */
  #booking { position: relative; overflow: hidden; padding: 0; }
  .booking-bg { position: absolute; inset: 0; background: linear-gradient(to right, rgba(44,26,14,0.96) 50%, rgba(44,26,14,0.75) 100%), url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1600&q=80') center/cover no-repeat; }
  .booking-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
  .booking-info { padding: 90px 60px; display: flex; flex-direction: column; justify-content: center; }
  .booking-info .section-label { color: var(--gold); }
  .booking-info .section-title { color: var(--white); font-size: 2.4rem; }
  .booking-info .section-desc { color: var(--cream-dark); }
  .booking-features { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
  .booking-feat { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; color: var(--cream); }
  .booking-feat .feat-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
  .booking-hall-gallery { display: grid; grid-template-columns: 1.15fr 0.85fr; grid-template-rows: repeat(2, 118px); gap: 12px; margin-top: 32px; max-width: 520px; }
  .booking-hall-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; border: 1px solid rgba(245,236,215,0.22); box-shadow: 0 16px 34px rgba(0,0,0,0.24); }
  .booking-hall-gallery img:first-child { grid-row: 1 / span 2; }
  .booking-form-wrap { background: var(--cream-light); padding: 60px 52px; display: flex; flex-direction: column; justify-content: center; }
  .form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 6px; }
  .form-sub { font-size: 0.82rem; color: var(--text-light); margin-bottom: 30px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
  .form-group input, .form-group select, .form-group textarea { border: 1px solid var(--cream-dark); border-radius: 3px; padding: 12px 16px; font-family: 'Jost', sans-serif; font-size: 0.88rem; color: var(--text-dark); background: var(--white); outline: none; transition: border-color 0.3s, box-shadow 0.3s; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .btn-submit { width: 100%; background: var(--brown-dark); color: var(--gold-light); padding: 15px; border: 2px solid var(--brown-dark); border-radius: 3px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: all 0.3s; margin-top: 6px; }
  .btn-submit:hover { background: var(--gold); border-color: var(--gold); color: var(--brown-dark); }

  /* ── CONTACT ─────────────────────────────── */
  #contact { background: var(--cream-light); display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 0; padding: 0; }
  .contact-book-section { scroll-margin-top: 72px; }
  .contact-info { padding: 80px 60px; background: var(--brown-dark); }
  .contact-info .section-label { color: var(--gold); }
  .contact-info .section-title { color: var(--white); font-size: 2.2rem; margin-bottom: 36px; }
  .contact-detail { display: flex; gap: 18px; margin-bottom: 30px; }
  .contact-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
  .contact-detail-info h4 { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
  .contact-detail-info p, .contact-detail-info a { font-size: 0.9rem; color: var(--cream-dark); line-height: 1.6; text-decoration: none; }
  .contact-detail-info a:hover { color: var(--gold-light); }
  .contact-info .contact-lead { color: rgba(245,236,215,0.78); font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; line-height: 1.7; margin: -18px 0 34px; max-width: 520px; }
  .contact-action-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
  .contact-action-row .whatsapp-btn { margin-top: 0; }
  .contact-book-btn:hover { color: var(--gold-light); }
  .contact-book-card { min-height: 100%; padding: 72px 56px; background: var(--cream-light); }
  .contact-book-card .section-label { color: var(--gold-dark); margin-bottom: 10px; }
  .contact-map { grid-column: 1 / -1; border-top: 1px solid rgba(201,168,76,0.24); }
  .contact-social { display: flex; gap: 12px; margin-top: 40px; }
  .social-btn { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; color: var(--cream-dark); font-size: 1rem; text-decoration: none; transition: all 0.3s; }
  .social-icon { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .google-icon { width: 20px; height: 20px; fill: currentColor; stroke: none; }
  .social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--brown-dark); transform: translateY(-3px); }
  .whatsapp-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 13px 28px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-decoration: none; margin-top: 28px; transition: all 0.3s; box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
  .whatsapp-btn:hover { background: #1ebe5b; transform: translateY(-2px); }
  .map-wrap { height: 100%; min-height: 480px; }
  .map-wrap iframe { width: 100%; height: 100%; min-height: 480px; border: none; display: block; }

  /* ── FOOTER ──────────────────────────────── */
  footer { background: #1A0F07; padding: 70px 5% 30px; border-top: 1px solid rgba(201,168,76,0.2); }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
  .footer-brand .logo-main { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold-light); display: block; margin-bottom: 4px; }
  .footer-brand .logo-sub { font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; color: var(--cream-dark); letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-bottom: 20px; }
  .footer-brand p { font-size: 0.85rem; color: rgba(245,236,215,0.6); line-height: 1.75; max-width: 260px; }
  .footer-col h5 { font-size: 0.72rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 0.85rem; color: rgba(245,236,215,0.6); text-decoration: none; transition: color 0.3s; }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-bottom { border-top: 1px solid rgba(201,168,76,0.15); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 0.78rem; color: rgba(245,236,215,0.45); }
  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* ── RESPONSIVE ──────────────────────────── */
  @media (max-width: 1024px) {
    nav { padding: 0 3%; }
    .nav-links { gap: 1.2rem; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .menu-items-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
  }
  @media (max-width: 768px) {
    section { padding: 70px 5%; }
    #about { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrap { height: 340px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { height: 420px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .booking-inner { grid-template-columns: 1fr; }
    .booking-info { padding: 60px 32px 40px; }
    .booking-hall-gallery { grid-template-rows: repeat(2, 92px); margin-top: 26px; }
    .booking-form-wrap { padding: 40px 28px; }
    #contact { grid-template-columns: 1fr; }
    .map-wrap { min-height: 320px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .stat-item { padding: 16px 24px; }
    .stat-item:not(:last-child)::after { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .menu-items-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .menu-tabs { gap: 6px; padding: 5px; }
    .menu-tab { padding: 9px 16px; font-size: 0.75rem; }
    .menu-tab .tab-icon { font-size: 0.95rem; }
    .nav-logo-img { height: 40px; width: 40px; }
    .nav-logo .logo-main { font-size: 1.1rem; }
  }
  @media (max-width: 580px) {
    .menu-items-grid { grid-template-columns: 1fr; }
    .menu-tabs { gap: 5px; padding: 4px; border-radius: 16px; }
    .menu-tab { padding: 9px 14px; font-size: 0.7rem; gap: 5px; }
    .mi-img-wrap { height: 200px; }
  }
  @media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { flex-direction: column; }
    .nav-logo-img { height: 36px; width: 36px; }
    .nav-logo .logo-main { font-size: 1rem; }
    .nav-logo .logo-sub { display: none; }
  }

  /* Mobile nav */
  .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(26,15,7,0.98); backdrop-filter: blur(12px); z-index: 999; padding: 28px 5% 36px; flex-direction: column; gap: 0; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { color: var(--cream); text-decoration: none; padding: 14px 0; border-bottom: 1px solid rgba(201,168,76,0.12); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em; transition: color 0.3s; }
  .mobile-nav a:hover { color: var(--gold-light); }

/* Home page refresh */
.home-hero {
  min-height: 100vh;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(26, 15, 7, 0.82), rgba(44, 26, 14, 0.52), rgba(26, 15, 7, 0.32)),
    linear-gradient(0deg, rgba(26, 15, 7, 0.42), rgba(26, 15, 7, 0.08));
}

.home-hero .hero-content {
  max-width: 900px;
}

.hero-brand-logo {
  width: clamp(110px, 15vw, 170px);
  margin: 0 auto 22px;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.home-hero .hero-sub {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--cream);
  font-weight: 500;
}

.home-intro,
.home-resort {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  background: var(--cream-light);
}

.home-feature-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 60px var(--shadow);
}

.home-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  display: block;
}

.home-feature-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(44, 26, 14, 0.74);
  border: 1px solid rgba(245, 236, 215, 0.28);
  backdrop-filter: blur(14px);
}

.home-feature-caption span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.home-feature-caption p {
  margin: 0;
  color: var(--cream);
  line-height: 1.65;
}

.home-text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.home-why,
.home-quick {
  background: var(--cream);
  text-align: center;
}

.home-quick {
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(250, 245, 235, 0.96)),
    var(--cream-light);
}

.home-quick .home-section-head {
  margin-bottom: 34px;
}

.home-quick .home-cards-grid {
  max-width: 820px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-quick .home-link-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.42);
  background: linear-gradient(180deg, var(--white), var(--cream-light));
  min-height: 230px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-quick .home-link-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px rgba(44, 26, 14, 0.16);
}

.home-quick .home-link-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.home-quick .home-link-card::after {
  content: 'View';
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-quick .home-link-card p {
  padding-right: 58px;
}

.home-quick .home-menu-card,
.home-quick .home-hall-card {
  min-height: 280px;
  text-align: left;
  color: var(--white);
  border-color: rgba(247, 215, 127, 0.78);
  box-shadow: 0 22px 54px rgba(44, 26, 14, 0.26);
}

.home-quick .home-menu-card {
  background:
    linear-gradient(135deg, rgba(35, 19, 9, 0.88) 0%, rgba(35, 19, 9, 0.52) 58%, rgba(201, 168, 76, 0.22) 100%),
    url('26 BENNE MASALA DOSA.png') center/cover no-repeat;
}

.home-quick .home-hall-card {
  background:
    linear-gradient(135deg, rgba(35, 19, 9, 0.9) 0%, rgba(35, 19, 9, 0.58) 58%, rgba(201, 168, 76, 0.24) 100%),
    url('hallset.jpg') center/cover no-repeat;
}

.home-quick .home-menu-card::before,
.home-quick .home-hall-card::before {
  height: 100%;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 236, 174, 0.3), transparent 32%),
    linear-gradient(90deg, rgba(201, 168, 76, 0.76), transparent 48%);
  pointer-events: none;
}

.home-quick .home-menu-card::after,
.home-quick .home-hall-card::after {
  content: '';
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(201, 168, 76, 0.42);
}

.home-quick .home-menu-card h3,
.home-quick .home-menu-card p,
.home-quick .home-menu-card .quick-card-badge,
.home-quick .home-menu-card .quick-card-action,
.home-quick .home-hall-card h3,
.home-quick .home-hall-card p,
.home-quick .home-hall-card .quick-card-badge,
.home-quick .home-hall-card .quick-card-action {
  position: relative;
  z-index: 1;
}

.home-quick .home-menu-card h3,
.home-quick .home-hall-card h3 {
  color: var(--white);
  font-size: 1.62rem;
  max-width: 260px;
}

.home-quick .home-menu-card p,
.home-quick .home-hall-card p {
  max-width: 310px;
  padding-right: 0;
  color: rgba(255, 249, 235, 0.88);
}

.quick-card-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 236, 174, 0.42);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.quick-card-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--brown-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-card-action::after {
  content: '>';
  font-size: 1rem;
  line-height: 1;
}

.home-why {
  background: linear-gradient(135deg, var(--cream-dark), var(--cream-light));
}

.home-section-head {
  max-width: 760px;
  margin: 0 auto 46px;
}

.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-info-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 30px 26px;
  text-align: left;
  box-shadow: 0 12px 34px var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-info-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 22px 54px rgba(44, 26, 14, 0.2);
}

.home-info-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--brown-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.home-info-card p {
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.home-link-card {
  display: block;
  text-decoration: none;
}

.home-resort {
  background: var(--cream-light);
}

.home-resort-image {
  min-height: 440px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(44, 26, 14, 0.18), rgba(44, 26, 14, 0.18)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=82') center/cover no-repeat;
  box-shadow: 0 24px 60px var(--shadow);
}

.home-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.home-tag-list span {
  background: rgba(201, 168, 76, 0.16);
  color: var(--brown-dark);
  border: 1px solid rgba(201, 168, 76, 0.38);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

.home-resort-actions {
  justify-content: flex-start;
}

.dark-outline {
  color: var(--brown-dark);
  border-color: var(--gold-dark);
}

.dark-outline:hover {
  color: var(--brown-dark);
  background: rgba(201, 168, 76, 0.16);
}

@media (max-width: 900px) {
  .home-intro,
  .home-resort {
    grid-template-columns: 1fr;
  }

  .home-cards-grid {
    grid-template-columns: 1fr;
  }

  .home-quick .home-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  #hero {
    min-height: 720px;
  }

  .hero-brand-logo {
    width: 112px;
  }

  .home-feature-card,
  .home-feature-card img,
  .home-resort-image {
    min-height: 310px;
  }

  .home-resort-actions {
    justify-content: center;
  }
}

/* Mobile polish */
img,
video,
iframe {
  max-width: 100%;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(201, 168, 76, 0.2);
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 66px;
  }

  body {
    font-size: 16px;
  }

  nav {
    height: 64px;
    padding: 0 18px;
  }

  .page-content {
    padding-top: 64px;
  }

  .mobile-nav {
    top: 64px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    padding: 12px 22px 24px;
  }

  .mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hamburger {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  .hamburger span {
    width: 26px;
  }

  section {
    padding: 58px 20px;
  }

  #hero,
  .home-hero {
    min-height: min(760px, 100svh);
    height: auto;
    padding: 92px 18px 48px;
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

  .hero-badge {
    max-width: 100%;
    padding: 6px 14px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    line-height: 1.45;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.08;
  }

  .home-hero .hero-sub,
  .hero-sub {
    font-size: 1.08rem;
    line-height: 1.45;
    margin-bottom: 28px;
  }

  .hero-btns {
    width: 100%;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline,
  .btn-service,
  .btn-submit,
  .menu-btn {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 13px 18px;
    letter-spacing: 0.08em;
  }

  .home-intro,
  .home-resort,
  .booking-inner {
    gap: 28px;
  }

  .home-feature-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .home-feature-caption span {
    font-size: 1.08rem;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-item {
    padding: 18px 12px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 8px;
  }

  .stat-num {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .services-grid,
  .why-grid,
  .gallery-grid,
  .home-cards-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: auto;
    min-height: 440px;
  }

  .service-overlay {
    padding: 28px 20px;
  }

  .service-name {
    font-size: 1.45rem;
  }

  .service-pills {
    gap: 6px;
  }

  .pill {
    font-size: 0.66rem;
  }

  .menu-tabs-wrap {
    justify-content: stretch;
    margin-top: 30px;
  }

  .menu-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .menu-tab {
    justify-content: center;
    min-height: 46px;
    border-radius: 10px;
  }

  .menu-items-wrap {
    margin-top: 30px;
  }

  .mi-card {
    border-radius: 8px;
  }

  .mi-body {
    padding: 18px;
  }

  .gallery-item img,
  .gallery-item:nth-child(1) img {
    min-height: 240px;
  }

  .booking-info,
  .booking-form-wrap {
    padding: 42px 20px;
  }

  .booking-info .section-title {
    font-size: 2rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    font-size: 16px;
  }

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

  .footer-brand p {
    max-width: none;
  }

  .footer-col ul {
    gap: 4px;
  }

  .footer-col ul li a,
  .home-text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer-bottom {
    display: block;
    text-align: left;
  }

  .footer-bottom p + p {
    margin-top: 10px;
  }

  .contact-social {
    flex-wrap: wrap;
  }

  .social-btn {
    width: 44px;
    height: 44px;
  }

  .gallery-tabs .tab-btn {
    min-height: 44px;
    padding: 10px 18px;
  }

  .pdf {
    width: 100%;
    display: grid;
    gap: 12px;
  }

  .pdf .menu-btn {
    margin-left: 0 !important;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0 14px;
  }

  .nav-logo {
    min-width: 0;
  }

  .nav-logo-text {
    min-width: 0;
  }

  .nav-logo .logo-main {
    white-space: nowrap;
  }

  #hero,
  .home-hero {
    min-height: 680px;
    padding-top: 86px;
  }

  .hero-brand-logo {
    width: 96px;
    margin-bottom: 16px;
  }

  .section-label {
    letter-spacing: 0.16em;
  }

  .section-title {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .section-desc {
    font-size: 1rem;
    line-height: 1.6;
  }

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

  .home-info-card,
  .why-card,
  .sbr-card {
    padding: 22px 18px;
  }

  .service-card {
    min-height: 470px;
  }

  .review-card {
    flex-basis: 72vw;
    width: 72vw;
    max-width: 280px;
    min-height: 230px;
    padding: 18px 16px;
  }

  .review-stars {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .review-text {
    font-size: 12.8px;
    line-height: 1.58;
  }

  .reviewer-avatar {
    width: 34px;
    height: 34px;
  }

  footer {
    padding: 48px 20px 24px;
  }
}
