/* ===========================================================
   New Himalaia Restaurante — Global Stylesheet
   Luxury Himalayan theme · Dark + Gold · Responsive
   =========================================================== */

:root {
  --gold: #C89B3C;
  --gold-light: #e0bd66;
  --charcoal: #1A1A1A;
  --bg: #0F0F0F;
  --bg-soft: #161616;
  --text: #FFFFFF;
  --muted: #b8b3a8;
  --cream: #F5E8D0;
  --line: rgba(200, 155, 60, 0.22);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --radius: 14px;
  --maxw: 1200px;
  --head: 'Cormorant Garamond', 'Times New Roman', serif;
  --body: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Light theme */
body.light {
  --bg: #fbf7ef;
  --bg-soft: #ffffff;
  --charcoal: #fffdf8;
  --text: #1d1a14;
  --muted: #6a6356;
  --cream: #3a3120;
  --line: rgba(200, 155, 60, 0.35);
  --shadow: 0 18px 50px rgba(120, 95, 30, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .4s ease, color .4s ease;
}

h1,
h2,
h3,
h4 {
  font-family: var(--head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .5px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 92%;
  max-width: var(--maxw);
  margin: 0 auto;
}

section {
  padding: 96px 0;
  position: relative;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: .8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  color: var(--text);
}

.section-title .accent {
  color: var(--gold);
}

.section-lead {
  color: var(--muted);
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 1.02rem;
}

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

.divider {
  width: 90px;
  height: 2px;
  margin: 22px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}

.divider::after {
  content: "✦";
  color: var(--gold);
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 8px;
  font-size: .8rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .5px;
  cursor: pointer;
  border: 1.5px solid var(--gold);
  transition: all .3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1408;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(200, 155, 60, .4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #1a1408;
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: all .35s ease;
  background: rgba(15, 15, 15, .15);
  backdrop-filter: blur(2px);
}

.header.scrolled {
  background: rgba(15, 15, 15, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, .4);
  border-bottom: 1px solid var(--line);
}

body.light .header {
  background: rgba(251, 247, 239, .2);
}

body.light .header.scrolled {
  background: rgba(251, 247, 239, .95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  transition: padding .35s ease;
}

.header.scrolled .nav {
  padding: 10px 0;
}

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

.brand img {
  height: 56px;
  width: auto;
  transition: height .3s ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4));
}

.header.scrolled .brand img {
  height: 46px;
}

/* Top Header Bar styling */
.header-top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(200, 155, 60, 0.12);
  transition: all 0.35s ease;
}

.header.scrolled .header-top-bar {
  background: rgba(0, 0, 0, 0.7);
  padding: 6px 0;
}

.brand-text {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.brand-text span {
  color: var(--gold);
  display: block;
  font-size: .68rem;
  letter-spacing: 3px;
  font-family: var(--body);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .brand-text {
    display: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.nav-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.icon-btn:hover {
  background: var(--gold);
  color: #1a1408;
  border-color: var(--gold);
}

.lang-toggle {
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 1px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(82%, 340px);
  height: 100vh;
  z-index: 1100;
  background: var(--charcoal);
  border-left: 1px solid var(--line);
  padding: 90px 32px 32px;
  transition: right .4s cubic-bezier(.6, .05, .2, 1);
  box-shadow: -20px 0 50px rgba(0, 0, 0, .6);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a:not(.btn) {
  display: block;
  padding: 16px 0;
  font-size: 1.05rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mobile-nav a:not(.btn):hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-nav .close {
  position: absolute;
  top: 26px;
  right: 28px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, .55), rgba(15, 15, 15, .82) 75%, var(--bg));
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 880px;
  margin: 0 auto;
  padding-top: 70px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .6);
}

.hero h1 .accent {
  color: var(--gold);
}

.hero p {
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  color: #f0ead9;
  max-width: 620px;
  margin: 0 auto 34px;
}

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

/* ---------- Quick Trust Bar ---------- */
.quick-trust-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: relative;
  z-index: 10;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(0, 230, 118, 0.12);
  color: #00E676;
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-check svg {
  display: block;
}

.trust-bar-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.4px;
}

@media (max-width: 768px) {
  .trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }
}


.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--gold);
  font-size: 1.4rem;
  animation: bob 1.8s infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

/* Hero background slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out, transform 6.5s ease-out;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.06);
}

/* Google Reviews Trust Badge from Scratch */
.google-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #141414;
  border: 1px solid rgba(200, 155, 60, 0.25);
  /* Subtle gold border */
  border-radius: 50px;
  padding: 8px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 24px;
}

.google-trust-badge:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(200, 155, 60, 0.35);
}

.google-badge-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-g-logo {
  background: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.google-badge-reviews {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.google-badge-reviews .google-stars {
  color: #FCB400;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

.google-badge-reviews span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #a5a29a;
  margin-top: 1px;
}

.google-badge-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

.google-badge-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.google-rating-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.google-rating-text strong {
  color: #FCB400;
  font-weight: 700;
}

.google-rating-text .out-of {
  font-size: 0.62rem;
  color: #a5a29a;
  font-weight: 600;
  margin-left: 2px;
  letter-spacing: 0.5px;
}

.google-stars-sub {
  color: #FCB400;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .google-trust-badge {
    padding: 8px 16px;
    gap: 12px;
    margin-bottom: 20px;
  }

  .google-badge-divider {
    height: 24px;
  }

  .google-g-logo {
    width: 24px;
    height: 24px;
  }

  .google-g-logo svg {
    width: 14px;
    height: 14px;
  }
}

/* Header Top Bar Trust Badge overrides */
.header-top-bar .google-trust-badge {
  margin-bottom: 0;
  padding: 3px 12px;
  background: transparent;
  border: none;
  box-shadow: none;
  gap: 12px;
}

.header-top-bar .google-trust-badge:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.header-top-bar .google-badge-divider {
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.header-top-bar .google-g-logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}

.header-top-bar .google-g-logo svg {
  width: 13px;
  height: 13px;
}

.header-top-bar .google-badge-reviews .google-stars {
  font-size: 0.78rem;
}

.header-top-bar .google-badge-reviews span {
  font-size: 0.52rem;
  letter-spacing: 1px;
}

.header-top-bar .google-rating-text {
  font-size: 0.75rem;
}

.header-top-bar .google-stars-sub {
  font-size: 0.72rem;
}

/* page hero (inner pages) */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 80px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, .55), rgba(15, 15, 15, .88));
}

.page-hero .inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: #fff;
}

.breadcrumb {
  color: var(--muted);
  font-size: .85rem;
  margin-top: 10px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-imgs {
  position: relative;
}

.about-imgs img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-imgs .img-main {
  height: 460px;
}

.about-imgs .badge {
  position: absolute;
  bottom: -26px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1408;
  padding: 20px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-imgs .badge strong {
  font-family: var(--head);
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}

.about-imgs .badge span {
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text .section-title {
  text-align: left;
}

.about-text .divider {
  margin: 22px 0;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-sign {
  font-family: var(--head);
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 8px;
}

/* ---------- Meet Chef ---------- */
.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.chef-imgs {
  position: relative;
}

.chef-imgs img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-imgs .img-main {
  height: 460px;
}

.chef-imgs .badge {
  position: absolute;
  bottom: -26px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1408;
  padding: 20px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.chef-imgs .badge strong {
  font-family: var(--head);
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}

.chef-imgs .badge span {
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.chef-text .section-title {
  text-align: left;
}

.chef-text .divider {
  margin: 22px 0;
}

.chef-text p {
  color: var(--muted);
  margin-bottom: 18px;
}

.chef-sign {
  font-family: var(--head);
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .chef-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .chef-imgs .img-main {
    height: 350px;
  }

  .chef-imgs .badge {
    right: 10px;
    bottom: -15px;
    padding: 12px 20px;
  }

  .chef-imgs .badge strong {
    font-size: 1.6rem;
  }
}

/* ---------- Featured dishes / cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 56px;
}

.cards.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  opacity: 0;
  transform: translateY(30px);
}

.card.in {
  opacity: 1;
  transform: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.card .thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
}

.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.card:hover .thumb img {
  transform: scale(1.08);
}

.card .body {
  padding: 22px;
}

.card .body h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.card .body p {
  color: var(--muted);
  font-size: .9rem;
}

.card .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #1a1408;
  font-size: .68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- Why choose us ---------- */
.why-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.why-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.why-slide.active {
  opacity: 1;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.92));
  z-index: -1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 54px;
}

.feature {
  background: rgba(22, 22, 22, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: .35s ease;
}

.feature:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.feature .ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--gold);
  background: rgba(200, 155, 60, .1);
  border: 1px solid var(--line);
}

.feature h3 {
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: .9rem;
}

/* ---------- Testimonials ---------- */
.testi {
  background: var(--bg);
}

.testi-track {
  max-width: 820px;
  margin: 50px auto 0;
  position: relative;
}

.testi-slide {
  display: none;
  text-align: center;
  animation: fade .6s ease;
}

.testi-slide.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testi-text {
  font-family: var(--head);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--cream);
  font-style: italic;
  line-height: 1.5;
}

.testi-meta {
  margin-top: 22px;
}

.testi-name {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.testi-role {
  color: var(--muted);
  font-size: .82rem;
}

.testi-quote-mark {
  font-family: var(--head);
  font-size: 5rem;
  color: var(--line);
  line-height: .4;
}

.testi-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.testi-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: .3s;
}

.testi-dots button.active {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}

.testi-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  color: var(--muted);
  font-size: .85rem;
  transition: color 0.25s ease;
}

.testi-google:hover {
  color: var(--gold);
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(rgba(15, 15, 15, .85), rgba(15, 15, 15, .92)), var(--charcoal);
  text-align: center;
  background-size: cover;
  background-position: center;
}

.cta-strip h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #fff;
}

.cta-strip p {
  color: var(--muted);
  max-width: 560px;
  margin: 14px auto 28px;
}

/* ---------- Menu page ---------- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 40px 0 50px;
}

.menu-tab {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--body);
  font-weight: 500;
  font-size: .85rem;
  transition: .25s;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--gold);
  color: #1a1408;
  border-color: var(--gold);
}

.menu-cat {
  margin-bottom: 64px;
  scroll-margin-top: 110px;
}

.menu-cat-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}

.menu-cat-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gold);
  white-space: nowrap;
}

.menu-cat-head .ln {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 50px;
}

.menu-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  align-items: flex-start;
}

.menu-item .mi-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--charcoal);
}

.menu-item .mi-body {
  flex: 1;
}

.mi-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.mi-name {
  font-family: var(--head);
  font-size: 1.3rem;
  color: var(--cream);
}

.mi-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  margin: 0 6px 6px;
}

.mi-price {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--body);
  white-space: nowrap;
}

.mi-desc {
  color: var(--muted);
  font-size: .85rem;
  margin-top: 2px;
}

.mi-badge {
  font-size: .62rem;
  background: rgba(200, 155, 60, .15);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: .5px;
  text-transform: uppercase;
  vertical-align: middle;
}

.menu-note {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 10px;
}

/* ---------- Forms ---------- */
.form-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: .82rem;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: .5px;
}

.field label .req {
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--body);
  font-size: .92rem;
  transition: border-color .25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field select option {
  background: var(--charcoal);
  color: var(--text);
}

.form-success {
  display: none;
  background: rgba(40, 140, 70, .12);
  border: 1px solid rgba(80, 200, 120, .4);
  color: #9fe6b6;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 22px;
  text-align: center;
  font-weight: 500;
}

.form-success.show {
  display: block;
  animation: fade .5s ease;
}

/* contact info cards */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.info-item .ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(200, 155, 60, .1);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.info-item h4 {
  color: var(--cream);
  font-family: var(--body);
  font-size: .95rem;
  margin-bottom: 4px;
}

.info-item p,
.info-item a {
  color: var(--muted);
  font-size: .9rem;
}

.info-item a:hover {
  color: var(--gold);
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(.3) contrast(1.1);
}

/* ---------- Blog ---------- */
.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-filter {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--body);
  font-size: .82rem;
  transition: .25s;
}

.blog-filter:hover,
.blog-filter.active {
  background: var(--gold);
  color: #1a1408;
  border-color: var(--gold);
}

.blog-search {
  position: relative;
}

.blog-search input {
  padding: 10px 16px 10px 40px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50px;
  color: var(--text);
  font-family: var(--body);
  width: 240px;
  max-width: 100%;
}

.blog-search input:focus {
  outline: none;
  border-color: var(--gold);
}

.blog-search .si {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .35s ease;
}

.post:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.post .thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
}

.post .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.post:hover .thumb img {
  transform: scale(1.07);
}

.post .cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #1a1408;
  font-size: .68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.post .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post .meta {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.post h3 {
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.25;
}

.post p {
  color: var(--muted);
  font-size: .88rem;
  flex: 1;
}

.post .read {
  color: var(--gold);
  font-weight: 600;
  font-size: .85rem;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post .read:hover {
  gap: 12px;
}

.no-results {
  text-align: center;
  color: var(--muted);
  padding: 50px;
  grid-column: 1/-1;
  display: none;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.masonry {
  columns: 3;
  column-gap: 18px;
}

.masonry .g-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--line);
}

.masonry .g-item img {
  width: 100%;
  transition: transform .5s ease;
  background: var(--charcoal);
}

.masonry .g-item::after {
  content: "\002B";
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, .55);
  color: var(--gold);
  font-size: 2rem;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: .3s;
}

.masonry .g-item:hover img {
  transform: scale(1.08);
}

.masonry .g-item:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, .94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
  animation: fade .3s ease;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox .lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.4rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  color: #fff;
  background: rgba(200, 155, 60, .2);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: .25s;
}

.lightbox .lb-nav:hover {
  background: var(--gold);
  color: #1a1408;
}

.lightbox .lb-prev {
  left: 24px;
}

.lightbox .lb-next {
  right: 24px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer .brand img {
  height: 70px;
  margin-bottom: 16px;
}

.footer p {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 16px;
}

.footer h4 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-family: var(--body);
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--gold);
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: var(--muted);
  font-size: .9rem;
  transition: .25s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.foot-contact li {
  display: flex;
  gap: 11px;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 13px;
  align-items: flex-start;
}

.foot-contact .ic {
  color: var(--gold);
  margin-top: 3px;
}

.foot-contact a:hover {
  color: var(--gold);
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: .25s;
}

.social a:hover {
  background: var(--gold);
  color: #1a1408;
  transform: translateY(-3px);
  border-color: var(--gold);
}

.social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.social a svg.instagram-svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter input {
  flex: 1;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--body);
  font-size: .85rem;
}

.newsletter input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter button {
  padding: 0 16px;
  background: var(--gold);
  color: #1a1408;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 22px 0;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
}

.footer-bottom a {
  color: var(--gold);
}

/* ---------- Floating actions ---------- */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: .3s;
}

.float-wa:hover {
  transform: scale(1.1);
}

.to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1408;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.faq-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border: 1px solid var(--line);
  border-radius: 50px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: -8px;
  margin-bottom: 40px;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.faq-tab {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.85rem;
  transition: 0.25s ease;
}

.faq-tab:hover,
.faq-tab.active {
  background: var(--gold);
  color: #1a1408;
  border-color: var(--gold);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  display: none;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active-cat {
  display: block;
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--text);
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 600;
  gap: 16px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1408;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.faq-question {
  flex: 1;
  color: var(--cream);
  line-height: 1.4;
}

.faq-chevron-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.faq-chevron {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.active .faq-chevron-circle {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 155, 60, 0.05);
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 24px 20px 72px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .faq-answer p {
    padding: 0 20px 18px 20px;
  }

  .faq-trigger {
    padding: 16px;
    gap: 12px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry {
    columns: 2;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-imgs .img-main {
    height: 360px;
  }

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

@media (max-width: 640px) {
  section {
    padding: 64px 0;
  }

  .cards,
  .feature-grid,
  .cards.cols-3,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .masonry {
    columns: 1;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .form-wrap {
    padding: 26px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-search input {
    width: 100%;
  }
}

/* hide elements by language */
[data-lang-hide="true"] {
  display: none !important;
}

/* Premium SVG Contact Icons styling */
.ic svg,
.contact-svg {
  display: inline-block;
  vertical-align: middle;
  stroke: var(--gold);
  fill: none;
  transition: transform 0.25s ease, stroke 0.25s ease;
}

.info-item .ic svg {
  width: 22px;
  height: 22px;
}

.foot-contact .ic svg {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.foot-contact li:hover .ic svg {
  transform: scale(1.15);
}

.info-item:hover .ic svg {
  transform: scale(1.15);
}

.blog-search .si svg {
  width: 16px;
  height: 16px;
  stroke: var(--muted);
  vertical-align: middle;
  transition: stroke 0.25s ease;
}

.blog-search:focus-within .si svg {
  stroke: var(--gold);
}

.float-wa svg {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.float-wa:hover svg {
  transform: scale(1.05);
}

/* Visions Section Grid */
.visions-section {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.visions-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  margin-top: 40px;
  height: 520px;
}

.visions-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visions-col.col-side {
  height: 100%;
}

.visions-col.col-mid {
  height: 100%;
}

.visions-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--line);
}

.visions-col.col-side .visions-item {
  height: 100%;
}

.visions-col.col-mid .visions-item {
  height: calc(50% - 10px);
}

.visions-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.visions-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
}

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

/* Responsiveness for Visions Grid */
@media (max-width: 992px) {
  .visions-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .visions-col.col-mid {
    grid-column: span 2;
    flex-direction: row;
    height: 300px;
  }

  .visions-col.col-mid .visions-item {
    width: calc(50% - 10px);
    height: 100%;
  }

  .visions-col.col-side {
    height: 400px;
  }
}

@media (max-width: 640px) {
  .visions-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .visions-col.col-mid {
    grid-column: span 1;
    flex-direction: column;
    height: auto;
  }

  .visions-col.col-mid .visions-item {
    width: 100%;
    height: 250px;
  }

  .visions-col.col-side {
    height: 350px;
  }
}

/* Visions CTA Button Styling */
.visions-cta-container {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.visions-cta-btn {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Article Body Typography Improvements */
.article-body h2 {
  font-family: var(--head);
  font-size: 2rem;
  color: var(--cream);
  margin-top: 2.5em;
  margin-bottom: 0.8em;
  font-weight: 600;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-family: var(--head);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 2em;
  margin-bottom: 0.6em;
  font-weight: 500;
}

.article-body p {
  margin-bottom: 1.2em;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5em;
  padding-left: 1.5rem;
}

.article-body ul {
  list-style-type: none;
}

.article-body ol {
  list-style-type: decimal;
}

.article-body ul li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 0.5rem;
}

.article-body ol li {
  margin-bottom: 0.5em;
  padding-left: 0.5rem;
}

.article-body ul li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: -1rem;
  font-weight: bold;
}