/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:       #0a0805;
  --dark:        #110e08;
  --card-bg:     #1a1208;
  --gold:        #C9A84C;
  --gold-light:  #FFD166;
  --gold-dim:    #8B6914;
  --cream:       #F5E6C8;
  --cream-dim:   #c4b08a;
  --white:       #ffffff;
  --font-title:  'Playfair Display', serif;
  --font-body:   'Lato', sans-serif;
  --font-sub:    'Cormorant Garamond', serif;
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ===== UTILITIES ===== */
.gold { color: var(--gold); }
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-desc {
  font-family: var(--font-sub);
  font-size: 1.15rem;
  color: var(--cream-dim);
  line-height: 1.8;
  max-width: 560px;
}
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}
.divider::after { background: linear-gradient(90deg, var(--gold-dim), transparent); }
.divider span { color: var(--gold); font-size: 1.1rem; }

/* ===== NAVBAR ===== */
/* ===== ANNOUNCEMENT BANNER ===== */
#ann-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.55rem 5%;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0a0805;
  background: var(--gold, #C9A84C);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  animation: bannerSlide 0.4s ease;
}
@keyframes bannerSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
#ann-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: rgba(0,0,0,0.6);
  line-height: 1;
  padding: 0 0.2rem;
  transition: color 0.2s;
  position: absolute;
  right: 5%;
}
#ann-close:hover { color: #0a0805; }
/* Navbar aşağı kayar */
body.has-banner #navbar { top: 38px; }

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 8, 5, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.9rem 5%;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--cream-dim); font-size: 0.6rem; display: block; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 2px; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

/* ===== MOBILE NAV OVERLAY (body'nin doğrudan çocuğu) ===== */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(10,8,5,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#mobile-nav.open {
  display: flex;
  animation: navFadeIn 0.3s ease;
}
@keyframes navFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
  padding: 0;
  margin: 0;
}
#mobile-nav a {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
  display: block;
}
#mobile-nav a:hover,
#mobile-nav a:active { color: var(--cream); transform: translateY(-2px); }
/* Kapat butonu (X) - hamburger ikonunu örtüyor, ayrı değil JS ile hamburger dönüştürülüyor */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-lang {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  cursor: pointer;
  border: 1px solid var(--gold-dim);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  transition: all var(--transition);
  background: transparent;
}
.nav-lang:hover { color: var(--gold); border-color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--gold); display: block; transition: all var(--transition); }

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,5,0.55) 0%, rgba(10,8,5,0.75) 60%, rgba(10,8,5,1) 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.3); }
}
.hero-content { position: relative; z-index: 2; padding: 0 1rem; }
.hero-logo-img {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  position: relative;
  animation: logo-appear 1.2s cubic-bezier(.4,0,.2,1) 0.1s both;
}
.hero-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.5)) drop-shadow(0 0 60px rgba(201,168,76,0.2));
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes logo-appear {
  from { opacity: 0; transform: scale(0.7) rotate(-5deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 25px rgba(201,168,76,0.45)) drop-shadow(0 0 50px rgba(201,168,76,0.15)); }
  50%       { filter: drop-shadow(0 0 45px rgba(201,168,76,0.7))  drop-shadow(0 0 80px rgba(201,168,76,0.3)); }
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: fade-up 1s ease 0.3s both;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  color: var(--gold-light);
  text-shadow: 0 0 60px rgba(255,209,102,0.35);
  line-height: 1.05;
  animation: fade-up 1s ease 0.5s both;
}
.hero-sub {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--cream-dim);
  font-style: italic;
  margin: 1.2rem 0 2.5rem;
  animation: fade-up 1s ease 0.7s both;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fade-up 1s ease 1s both;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scroll-bounce 1.5s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== ABOUT ===== */
#about {
  padding: 7rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,168,76,0.3);
  pointer-events: none;
  border-radius: 2px;
}
.about-badge {
  position: absolute;
  bottom: -1px; right: -1px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-title);
  font-size: 0.65rem;
  padding: 0.8rem 1.2rem;
  letter-spacing: 0.1em;
}
.about-text .section-desc { max-width: 100%; }
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ===== MENU ===== */
#menu {
  padding: 7rem 5%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  z-index: 6;
  pointer-events: none;
}
/* Sadece carousel modunda sag fade goster */
#menu.menu-scroll {
  padding: 7rem 0 7rem 5%;
}
#menu.menu-scroll::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: clamp(120px, 12vw, 180px);
  background: linear-gradient(to right, transparent, var(--dark) 90%);
  pointer-events: none;
  z-index: 5;
}
.menu-header {
  text-align: center;
  margin-bottom: 4rem;
}
.menu-header .section-desc { margin: 0 auto; text-align: center; max-width: 520px; }
#menu.menu-scroll .menu-header { padding-right: 5%; }

/* ---- Grid modu (<=4 kategori) ---- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Carousel modu (5+ kategori) ---- */
.menu-grid.scrollable {
  display: flex;
  flex-wrap: nowrap;
  max-width: none;
  margin: 0;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.5rem;
  padding-right: 5%;
  cursor: grab;
}
.menu-grid.scrollable::-webkit-scrollbar { display: none; }
.menu-grid.scrollable:active { cursor: grabbing; }
/* Carousel'da her kart icin: 4 tam + 0.5 kart gorunsun */
.menu-grid.scrollable .menu-card {
  flex: 0 0 calc((95vw - 6rem) / 4.5);
  max-width: 340px;
  scroll-snap-align: start;
}

.menu-card {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(201,168,76,0.08);
}
.menu-card-img {
  position: relative;
  overflow: hidden;
  display: flex;
}
.menu-card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,8,5,0.85) 100%);
}
.menu-card-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.menu-card-body { padding: 1.5rem; }
.menu-card-title {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.menu-card-desc {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.menu-items { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.menu-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(139,105,20,0.4);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* ===== GALLERY ===== */
#gallery {
  padding: 7rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
/* First item: large (2 cols, 2 rows) */
.gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item:first-child img { height: 100%; min-height: 408px; }
/* 6th and 7th: each span 2 cols */
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-column: span 2; }
.gallery-caption {
  position: absolute;
  inset: 0;
  background: rgba(10,8,5,0);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-caption { background: rgba(10,8,5,0.5); }
.gallery-caption span {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-caption span { opacity: 1; transform: translateY(0); }

/* ===== MENU CARD CTA ===== */
.menu-card-cta {
  margin-top: 0.9rem;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  transition: color var(--transition), letter-spacing var(--transition);
}
.menu-card:hover .menu-card-cta {
  color: var(--gold);
  letter-spacing: 0.25em;
}

/* ===== MENU DETAIL PANEL ===== */
#menu-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2500;
}
#menu-modal.open { display: flex; }
.mm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,4,2,0.75);
  backdrop-filter: blur(6px);
  animation: mmFade 0.3s ease;
}
@keyframes mmFade { from { opacity:0 } to { opacity:1 } }
.mm-panel {
  position: relative;
  margin-left: auto;
  width: min(500px, 100vw);
  height: 100vh;
  background: #100d08;
  border-left: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  animation: mmSlide 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
@keyframes mmSlide { from { transform: translateX(100%) } to { transform: translateX(0) } }
#mm-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: rgba(10,8,5,0.7);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream-dim);
  font-size: 1.1rem;
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}
#mm-close:hover { background: var(--gold); color: #0a0805; transform: rotate(90deg); }
.mm-hero {
  position: relative;
  flex-shrink: 0;
  display: flex;
}
.mm-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.mm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,5,0.2) 0%, rgba(10,8,5,0.85) 100%);
}
.mm-hero-content {
  position: absolute;
  bottom: 1.5rem; left: 1.8rem;
}
.mm-cat-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.3rem;
}
.mm-hero-content h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin: 0;
}
.mm-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1.6rem 1.8rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.3) transparent;
}
.mm-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background 0.2s;
}
.mm-item:last-child { border-bottom: none; }
.mm-item:hover { background: rgba(201,168,76,0.03); }
.mm-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mm-item-name {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.mm-item-desc {
  font-size: 0.8rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.mm-item-price {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}


/* ===== LIGHTBOX ===== */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(5,4,2,0.96);
  align-items: center;
  justify-content: center;
  animation: lbFadeIn 0.25s ease;
}
#lightbox.open { display: flex; }
@keyframes lbFadeIn { from { opacity:0 } to { opacity:1 } }
#lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.8);
  animation: lbSlide 0.25s ease;
}
@keyframes lbSlide { from { opacity:0; transform:scale(0.96) } to { opacity:1; transform:scale(1) } }
#lb-caption {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 1rem;
}
#lb-counter {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  color: rgba(245,230,200,0.4);
  margin-top: 0.4rem;
  letter-spacing: 0.1em;
}
#lb-close {
  position: fixed; top: 1.5rem; right: 2rem;
  background: none; border: none; cursor: pointer;
  color: var(--cream-dim); font-size: 2rem; line-height:1;
  transition: color 0.2s, transform 0.2s;
  z-index: 3001;
}
#lb-close:hover { color: var(--gold); transform: rotate(90deg); }
#lb-prev, #lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  font-size: 2.2rem; line-height:1;
  width: 3rem; height: 5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  z-index: 3001;
}
#lb-prev { left: 1.2rem; }
#lb-next { right: 1.2rem; }
#lb-prev:hover, #lb-next:hover { background: rgba(201,168,76,0.28); color: #fff; }

/* ===== WHY US ===== */
#why {
  padding: 7rem 5%;
  background: var(--dark);
  position: relative;
}
#why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.why-header { text-align: center; margin-bottom: 4rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.4));
}
.why-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.why-desc {
  font-family: var(--font-sub);
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
#contact {
  padding: 7rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-desc { max-width: 100%; margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.25rem;
}
.contact-item-text p, .contact-item-text a {
  font-family: var(--font-sub);
  font-size: 1rem;
  color: var(--cream-dim);
  text-decoration: none;
  line-height: 1.6;
  transition: color var(--transition);
}
.contact-item-text a:hover { color: var(--gold); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; }
.map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  filter: grayscale(1) invert(0.9) sepia(0.4) saturate(0.6);
}
.contact-form { margin-top: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.form-group input, .form-group textarea {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: var(--font-sub);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}

/* ===== PHONE WIDGET ===== */
.phone-widget {
  display: flex; align-items: center;
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  position: relative;
  transition: border-color var(--transition);
}
.phone-widget:focus-within { border-color: var(--gold); }
.cp-trigger {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.85rem 0.8rem;
  cursor: pointer; flex-shrink: 0;
  border-right: 1px solid rgba(201,168,76,0.15);
  user-select: none; min-width: 80px;
  transition: background var(--transition);
}
.cp-trigger:hover { background: rgba(201,168,76,0.06); }
.cp-trigger #cp-flag { font-size: 1.15rem; line-height: 1; }
.cp-trigger #cp-code { font-size: 0.85rem; color: var(--gold); font-weight: 700; }
.cp-arrow { font-size: 0.65rem; color: var(--gold-dim); margin-left: auto; transition: transform var(--transition); }
.cp-trigger.open .cp-arrow { transform: rotate(180deg); }
.cp-panel {
  display: none; position: absolute;
  top: calc(100% + 4px); left: 0;
  width: 280px; z-index: 500;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  overflow: hidden;
}
.cp-panel.open { display: block; animation: cp-drop 0.2s ease; }
@keyframes cp-drop { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
#cp-search {
  width: 100%; padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: none; border-bottom: 1px solid rgba(201,168,76,0.12);
  color: var(--cream); font-size: 0.82rem; font-family: var(--font-body);
  outline: none;
}
#cp-search::placeholder { color: rgba(196,176,138,0.4); }
#cp-list {
  list-style: none; max-height: 200px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--gold-dim) transparent;
}
#cp-list li {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.9rem; cursor: pointer; font-size: 0.82rem;
  color: var(--cream-dim); transition: background var(--transition);
}
#cp-list li:hover, #cp-list li.active { background: rgba(201,168,76,0.1); color: var(--cream); }
#cp-list li .li-flag { font-size: 1rem; flex-shrink: 0; }
#cp-list li .li-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#cp-list li .li-dial { color: var(--gold-dim); font-size: 0.75rem; flex-shrink: 0; }
.phone-num-input {
  flex: 1; background: transparent; border: none;
  padding: 0.85rem 0.8rem; color: var(--cream);
  font-family: var(--font-body); font-size: 1rem;
  outline: none; letter-spacing: 0.05em;
}
.phone-num-input::placeholder { color: rgba(196,176,138,0.3); letter-spacing: 0.05em; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 5% 2rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: var(--font-sub);
  font-style: italic;
  color: var(--cream-dim);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; justify-content: center; gap: 1.2rem; margin-bottom: 2rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold-dim);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); transform: translateY(-3px); }
.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  opacity: 0.7;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== IPAD LANDSCAPE & SMALL LAPTOPS ===== */
@media (max-width: 1250px) {
  /* ---- WHY ---- */
  .why-grid { grid-template-columns: 1fr 1fr; max-width: 800px; }

  /* ---- CONTACT ---- */
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .map-wrap iframe { height: 350px; }

  /* ---- MENU ---- */
  .menu-grid.scrollable .menu-card {
    flex: 0 0 calc((90vw - 4rem) / 3.2);
  }
}

/* ===== TABLET / IPAD PORTRAIT NAV & LAYOUT ===== */
@media (max-width: 1024px) {
  /* Desktop nav hidden on tablet */
  .nav-links { display: none; }
  .hamburger { display: flex; z-index: 1001; }
  .nav-lang {
    margin-left: auto;
    margin-right: 1.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  /* ---- WHY ---- */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* ---- CONTACT ---- */
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .map-wrap iframe { height: 350px; }

  /* ---- MENU ---- */
  .menu-grid.scrollable .menu-card {
    flex: 0 0 calc((90vw - 4rem) / 3.2);
  }
  .menu-tag {
    font-size: 0.62rem;
    padding: 0.2rem 0.4rem;
    letter-spacing: 0.05em;
  }
  .menu-items { gap: 0.3rem; }
}

@media (max-width: 850px) {
  .menu-grid.scrollable .menu-card {
    flex: 0 0 calc((90vw - 3rem) / 2.5);
  }
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  /* Mobile nav specific if needed */

  /* ---- HERO ---- */
  .hero-logo-img { width: 160px; height: 160px; }

  /* ---- ABOUT ---- */
  #about { grid-template-columns: 1fr; gap: 2.5rem; padding: 5rem 5%; }
  .about-img-wrap img { height: 300px; }

  /* ---- MENU ---- */
  #menu         { padding: 4rem 5%; }
  #menu.menu-scroll { padding: 4rem 0 4rem 5%; }
  /* Carousel: show 1.5 cards on tablet/large mobile */
  .menu-grid.scrollable .menu-card {
    flex: 0 0 calc((90vw - 2rem) / 1.5);
    max-width: none;
  }

  /* ---- GALLERY ---- */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: 1/3; grid-row: auto; }
  .gallery-item:first-child img { min-height: 220px; }
  .gallery-item:nth-child(6), .gallery-item:nth-child(7) { grid-column: span 1; }

  /* ---- LIGHTBOX ---- */
  #lb-prev, #lb-next { width: 2.2rem; height: 3.5rem; font-size: 1.4rem; }
  #lb-prev { left: 0.4rem; }
  #lb-next { right: 0.4rem; }
  #lb-close { top: 1rem; right: 1rem; font-size: 1.6rem; }

  /* ---- CONTACT ---- */
  #contact { padding: 5rem 5%; }
  .contact-grid { gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 260px; }

  /* ---- COUNTRY CODE PANEL ---- */
  .cp-panel { width: min(280px, calc(100vw - 2rem)); }

  /* ---- WHY ---- */
  #why { padding: 5rem 5%; }
  .about-stats { gap: 1.2rem; }

  /* ---- MENU MODAL ---- */
  .mm-panel { width: 100vw; }
}

@media (max-width: 480px) {
  /* ---- HERO ---- */
  .hero-logo-img { width: 130px; height: 130px; }

  /* ---- MENU ---- */
  /* Carousel: show 1.2 cards on small phones */
  .menu-grid.scrollable .menu-card {
    flex: 0 0 calc((90vw - 1.5rem) / 1.2);
    max-width: none;
  }
  .menu-card-body { padding: 1rem; }

  /* ---- GALLERY ---- */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* ---- CONTACT ---- */
  .map-wrap iframe { height: 220px; }

  /* ---- SECTION SPACING ---- */
  #gallery  { padding: 4rem 4%; }
  #why      { padding: 4rem 4%; }
  footer    { padding: 2.5rem 4% 2rem; }

  /* ---- ANNOUNCEMENT BANNER ---- */
  #ann-banner { font-size: 0.75rem; padding: 0.45rem 3rem 0.45rem 5%; }
}
