@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --cream:      #fff3dd;
  --cream2:     #fde9c0;
  --cream3:     #f5dba8;
  --cream4:     #efe0c0;
  --wine:       #6e2e2e;
  --wine-dark:  #4a1e1e;
  --wine-light: #8f4040;
  --wine-pale:  #f2e4e4;
  --wine-faint: #faf0f0;
  --text:       #2c1a1a;
  --text-soft:  #6b4c4c;
  --text-muted: #a08080;
  --border:     rgba(110,46,46,0.13);
  --border-med: rgba(110,46,46,0.22);
  --shadow-sm:  0 2px 12px rgba(110,46,46,0.07);
  --shadow-md:  0 8px 36px rgba(110,46,46,0.10);
  --shadow-lg:  0 20px 60px rgba(110,46,46,0.13);
  --white:      #fffdf7;
  --radius:     2px;
  --nav-h:      76px;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--wine-light); border-radius: 3px; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s ease;
}
#nav.scrolled {
  background: rgba(255,243,221,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex; flex-direction: column; gap: 0;
  cursor: pointer; text-decoration: none; flex-shrink: 0;
}
.nav-logo-main {
  font-family: 'Cormorant', serif;
  font-weight: 700; font-size: 30px; line-height: 1;
  color: var(--wine); letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 400;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-soft); text-decoration: none; font-weight: 400;
  position: relative; padding-bottom: 3px;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--wine);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--wine); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-qr-btn {
  background: var(--wine) !important; color: var(--cream) !important;
  padding: 9px 22px !important; border-radius: var(--radius);
  letter-spacing: 0.15em !important;
}
.nav-qr-btn::after { display: none !important; }
.nav-qr-btn:hover { background: var(--wine-dark) !important; opacity: .9; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--wine); transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer */
.nav-drawer {
  position: fixed; top: 0; right: -300px; bottom: 0;
  width: 280px; z-index: 300;
  background: var(--white);
  border-left: 1px solid var(--border);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  padding: 90px 32px 40px;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-drawer.open { right: 0; }
.nav-drawer a {
  display: block; padding: 13px 0;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-soft); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}
.nav-drawer a:hover { color: var(--wine); padding-left: 6px; }
.nav-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(44,26,26,0.35);
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ─────────────────────────────────────────
   PAGE WRAPPER
───────────────────────────────────────── */
.page-wrap { padding-top: var(--nav-h); min-height: 100vh; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
  padding: 120px 40px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--cream);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
}
.hero-bg-img.loaded { opacity: 0.16; }
.hero-bg-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, transparent 30%, var(--cream) 100%),
    linear-gradient(to bottom, var(--cream) 0%, transparent 20%, transparent 75%, var(--cream) 100%);
}
.hero-orb-1 {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  width: 580px; height: 580px;
  border: 1px solid rgba(110,46,46,0.07);
  border-radius: 50%; pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  width: 380px; height: 380px;
  border: 1px solid rgba(110,46,46,0.05);
  border-radius: 50%; pointer-events: none;
  animation: orbPulse 6s 1.5s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -52%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -52%) scale(1.03); opacity: 0.6; }
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--wine); font-weight: 500; margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 36px; height: 1px;
  background: var(--wine); opacity: 0.45;
}
.hero-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(96px, 15vw, 168px);
  font-weight: 700; line-height: .86;
  color: var(--wine); letter-spacing: -0.02em;
  margin-bottom: 28px;
  animation: fadeUp .8s .1s ease both;
}
.hero-subtitle {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(17px, 2.4vw, 23px);
  font-style: italic; color: var(--text-soft);
  max-width: 520px; margin: 0 auto 48px;
  line-height: 1.55;
  animation: fadeUp .8s .2s ease both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; z-index: 1;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--wine-light), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ─────────────────────────────────────────
   PAGE HERO (sub-pages)
───────────────────────────────────────── */
.page-hero {
  background: var(--wine);
  padding: 100px 60px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: attr(data-title);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant', serif;
  font-size: 200px; font-weight: 700; line-height: 1;
  color: rgba(255,243,221,0.04);
  white-space: nowrap; pointer-events: none;
  letter-spacing: -0.02em;
}
.page-hero-eyebrow {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,243,221,0.5); margin-bottom: 14px;
}
.page-hero-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 600; color: var(--cream); line-height: 1;
}
.page-hero-title em { font-style: italic; font-weight: 300; }
.page-hero-lead {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 18px; color: rgba(255,243,221,0.65);
  margin-top: 16px;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 400; border: none; cursor: pointer;
  transition: all .25s; border-radius: var(--radius);
}
.btn-primary {
  background: var(--wine); color: var(--cream); padding: 15px 44px;
}
.btn-primary:hover { background: var(--wine-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--wine);
  padding: 14px 44px; border: 1px solid var(--border-med);
}
.btn-outline:hover { background: var(--wine-pale); border-color: var(--wine); transform: translateY(-2px); }
.btn-sm { padding: 9px 22px; font-size: 11px; }
.btn-white {
  background: var(--cream); color: var(--wine); padding: 15px 44px;
}
.btn-white:hover { background: var(--cream2); transform: translateY(-2px); }

/* ─────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────── */
section { padding: 100px 60px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--wine); font-weight: 500; margin-bottom: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; width: 24px; height: 1px;
  background: var(--wine); opacity: 0.4;
}
.section-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600; color: var(--wine-dark); line-height: 1.05;
}
.section-title em { font-style: italic; font-weight: 300; }
.section-lead {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 18px; color: var(--text-soft);
  margin-top: 14px; max-width: 460px;
  margin-left: auto; margin-right: auto;
}

/* ─────────────────────────────────────────
   INDEX — ABOUT STRIP
───────────────────────────────────────── */
.index-about { background: var(--white); }
.about-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-text-eyebrow {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--wine); font-weight: 500; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.about-text-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--wine); opacity: 0.4;
}
.about-text h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600; color: var(--wine-dark);
  line-height: 1.1; margin-bottom: 22px;
}
.about-text h2 em { font-style: italic; font-weight: 300; }
.about-text p { color: var(--text-soft); line-height: 1.9; font-size: 16px; margin-bottom: 14px; }
.about-img-stack { position: relative; height: 500px; }
.aimg-1 {
  position: absolute; top: 0; right: 0; width: 82%; height: 380px;
  overflow: hidden; background: var(--cream2);
  border: 1px solid var(--border);
}
.aimg-1 img, .aimg-2 img { width: 100%; height: 100%; object-fit: cover; }
.aimg-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
}
.aimg-2 {
  position: absolute; bottom: 0; left: 0; width: 52%; height: 248px;
  overflow: hidden; background: var(--wine-pale);
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.aimg-badge {
  position: absolute; bottom: 28px; right: -22px;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--wine);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.aimg-badge-name {
  font-family: 'Cormorant', serif; font-size: 20px;
  font-weight: 700; color: var(--cream); line-height: 1;
}
.aimg-badge-label {
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,243,221,0.6);
}

/* ─────────────────────────────────────────
   INDEX — FIX PREVIEW
───────────────────────────────────────── */
.fix-preview-section {
  background: linear-gradient(160deg, var(--cream) 0%, var(--wine-faint) 100%);
}
.fix-cards-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.fix-card {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; text-decoration: none; display: block;
  transition: transform .3s, box-shadow .3s;
}
.fix-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.fix-card-img {
  height: 200px; background: var(--cream2); overflow: hidden; position: relative;
}
.fix-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.fix-card:hover .fix-card-img img { transform: scale(1.06); }
.fix-card-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: rgba(110,46,46,.13);
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
}
.fix-card-body { padding: 22px 26px 26px; }
.fix-card-name {
  font-family: 'Cormorant', serif; font-size: 22px; font-weight: 600;
  color: var(--wine-dark); margin-bottom: 14px;
}
.fix-price-pair { display: flex; flex-direction: column; gap: 5px; }
.fix-price-line { display: flex; align-items: baseline; gap: 8px; }
.fix-price-num {
  font-family: 'Cormorant', serif; font-size: 28px; font-weight: 700;
  color: var(--wine); line-height: 1;
}
.fix-price-lbl {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}
.fix-card-tag {
  display: inline-block; margin-top: 14px;
  background: var(--wine); color: var(--cream);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 3px 10px;
}

/* ─────────────────────────────────────────
   INDEX — NUMBERS STRIP
───────────────────────────────────────── */
.numbers-strip {
  background: var(--wine);
  padding: 60px;
}
.numbers-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.number-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,243,221,0.15);
}
.number-item:last-child { border-right: none; }
.number-val {
  font-family: 'Cormorant', serif; font-size: 56px; font-weight: 700;
  color: var(--cream); line-height: 1;
}
.number-label {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,243,221,0.5); margin-top: 6px;
}

/* ─────────────────────────────────────────
   HAKKIMIZDA PAGE
───────────────────────────────────────── */
.about-page-body { background: var(--white); }
.about-page-content {
  max-width: 1140px; margin: 0 auto;
  padding: 80px 60px;
}
.about-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-bottom: 80px; align-items: start;
}
.about-long-text p {
  color: var(--text-soft); line-height: 1.9;
  font-size: 17px; margin-bottom: 20px;
}
.about-long-text blockquote {
  border-left: 2px solid var(--wine);
  padding: 16px 0 16px 28px;
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 20px; color: var(--wine-dark); margin: 28px 0;
  line-height: 1.5;
}
.about-details-panel {}
.about-detail-item {
  display: flex; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.about-detail-item:last-child { border-bottom: none; }
.about-detail-icon { font-size: 18px; color: var(--wine); width: 28px; flex-shrink: 0; padding-top: 2px; }
.about-detail-label {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--wine); font-weight: 500; margin-bottom: 4px;
}
.about-detail-val { font-size: 16px; color: var(--text); }
.about-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 60px;
}
.about-value-card {
  background: var(--cream); border: 1px solid var(--border);
  padding: 32px 24px; text-align: center;
}
.about-value-icon { font-size: 28px; margin-bottom: 14px; }
.about-value-title {
  font-family: 'Cormorant', serif; font-size: 20px; font-weight: 600;
  color: var(--wine-dark); margin-bottom: 10px;
}
.about-value-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─────────────────────────────────────────
   MENU PAGE
───────────────────────────────────────── */
.menu-page { background: var(--white); }
.menu-page-inner { max-width: 1200px; margin: 0 auto; padding: 60px; }

.menu-tabs-row {
  display: flex; justify-content: center; margin-bottom: 52px;
}
.menu-tabs {
  display: inline-flex; border: 1px solid var(--border);
  overflow: hidden;
}
.menu-tab {
  padding: 13px 36px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 400; background: transparent; color: var(--text-soft);
  transition: all .2s;
}
.menu-tab.active { background: var(--wine); color: var(--cream); }
.menu-tab:not(.active):hover { background: var(--wine-pale); color: var(--wine); }

/* Fix selector */
.fix-selector {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 44px;
}
.fix-sel-btn {
  padding: 10px 28px; border: 1px solid var(--border); background: var(--cream);
  color: var(--text-soft); cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all .2s; border-radius: 20px;
}
.fix-sel-btn.active { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.fix-sel-btn:not(.active):hover { border-color: var(--wine); color: var(--wine); }

/* Fix detail */
.fix-detail { display: none; animation: fadeUp .3s ease both; }
.fix-detail.visible { display: block; }

.fix-detail-banner {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); overflow: hidden; margin-bottom: 40px;
}
.fix-detail-img {
  height: 300px; background: var(--cream2); overflow: hidden;
}
.fix-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.fix-detail-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
}
.fix-detail-info {
  padding: 36px 40px; background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.fix-detail-info h3 {
  font-family: 'Cormorant', serif; font-size: 36px; font-weight: 600;
  color: var(--wine-dark); margin-bottom: 22px;
}
.fix-prices { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.fix-price-box {
  flex: 1; min-width: 130px; padding: 16px 20px;
  background: var(--cream); border: 1px solid var(--border);
}
.fix-price-box.alkol {
  background: var(--wine-faint); border-color: rgba(110,46,46,.22);
}
.fix-price-box-lbl {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--wine); font-weight: 500; margin-bottom: 4px;
}
.fix-price-box-amt {
  font-family: 'Cormorant', serif; font-size: 36px; font-weight: 700;
  color: var(--wine); line-height: 1;
}
.fix-price-box-note { font-size: 11px; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
.fix-alkol-note { font-size: 12px; color: var(--text-muted); font-style: italic; line-height: 1.5; }

.fix-sections-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px;
}
.fix-section-block {}
.fix-section-title {
  font-size: 9px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--wine); font-weight: 500;
  padding-bottom: 8px; margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.fix-section-title::before { content: '—'; color: var(--wine); opacity: .35; }
.fix-item-row { padding: 9px 0; border-bottom: 1px solid rgba(110,46,46,.05); }
.fix-item-row:last-child { border-bottom: none; }
.fix-item-name { font-size: 15px; color: var(--text); }
.fix-item-desc { font-size: 12px; color: var(--text-muted); font-style: italic; margin-top: 2px; }
.fix-bottom-note {
  background: var(--cream); border: 1px solid var(--border);
  padding: 14px 20px; font-size: 13px; color: var(--text-muted);
  font-style: italic; text-align: center; line-height: 1.6;
}

/* Regular menu */
.regular-menu { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.cat-sidebar {}
.cat-sidebar-ttl {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--wine); font-weight: 500;
  padding-bottom: 10px; margin-bottom: 8px; border-bottom: 1px solid var(--border);
}
.cat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; cursor: pointer; font-size: 13px; font-weight: 400;
  color: var(--text-soft); border-left: 2px solid transparent;
  transition: all .2s; margin-bottom: 2px;
}
.cat-item.active { color: var(--wine); border-left-color: var(--wine); background: var(--wine-pale); }
.cat-item:not(.active):hover { color: var(--wine); border-left-color: rgba(110,46,46,.3); }
.cat-item-count { font-size: 11px; color: var(--text-muted); }
.menu-panel { display: none; animation: fadeUp .3s ease both; }
.menu-panel.visible { display: block; }
.menu-panel-title {
  font-family: 'Cormorant', serif; font-size: 44px; font-weight: 600;
  color: var(--wine-dark); margin-bottom: 28px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.menu-search {
  width: 100%; padding: 12px 16px; margin-bottom: 20px;
  background: var(--cream); border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
  outline: none; transition: border-color .2s;
}
.menu-search:focus { border-color: var(--wine); }
.menu-items {}
.menu-item {
  display: grid; grid-template-columns: 68px 1fr auto;
  gap: 16px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(110,46,46,.06);
  transition: background .15s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: rgba(255,243,221,.5); margin: 0 -10px; padding: 14px 10px; }
.menu-item-img {
  width: 68px; height: 68px; border-radius: 3px;
  overflow: hidden; background: var(--cream2); flex-shrink: 0;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: rgba(110,46,46,.15);
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
}
.menu-item-name { font-size: 16px; color: var(--text); font-weight: 400; }
.menu-item-desc { font-size: 13px; color: var(--text-muted); font-style: italic; margin-top: 2px; }
.menu-item-price {
  font-family: 'Cormorant', serif; font-size: 22px; font-weight: 600;
  color: var(--wine); white-space: nowrap;
}

/* ─────────────────────────────────────────
   GALLERY PAGE
───────────────────────────────────────── */
.gallery-page { background: var(--cream); }
.gallery-page-inner { max-width: 1200px; margin: 0 auto; padding: 60px; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-item {
  overflow: hidden; background: var(--cream2); cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1)  { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2)  { grid-column: span 4; }
.gallery-item:nth-child(3)  { grid-column: span 3; }
.gallery-item:nth-child(4)  { grid-column: span 4; }
.gallery-item:nth-child(5)  { grid-column: span 3; }
.gallery-item:nth-child(6)  { grid-column: span 4; }
.gallery-item:nth-child(7)  { grid-column: span 3; }
.gallery-item:nth-child(8)  { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(9)  { grid-column: span 4; }
.gallery-item:nth-child(10) { grid-column: span 3; }
.gallery-item:nth-child(11) { grid-column: span 4; }
.gallery-item:nth-child(12) { grid-column: span 3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 180px; transition: transform .5s; display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-ph {
  min-height: 180px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
}
/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(44,26,26,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 32px; color: var(--cream); cursor: pointer;
  background: none; border: none; line-height: 1; opacity: .7;
  transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 28px; color: var(--cream); cursor: pointer;
  background: none; border: none; padding: 16px; opacity: .6;
  transition: opacity .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ─────────────────────────────────────────
   ILETISIM PAGE
───────────────────────────────────────── */
.contact-page { background: var(--white); }
.contact-page-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 80px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-info-title {
  font-family: 'Cormorant', serif; font-size: 32px; font-weight: 600;
  color: var(--wine-dark); margin-bottom: 32px;
}
.contact-info-item {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { font-size: 20px; color: var(--wine); width: 28px; flex-shrink: 0; padding-top: 2px; }
.contact-info-lbl {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--wine); font-weight: 500; margin-bottom: 5px;
}
.contact-info-val { font-size: 17px; color: var(--text); line-height: 1.4; }
.contact-map-wrap { margin-top: 32px; border: 1px solid var(--border); overflow: hidden; }
.contact-map-wrap iframe { display: block; width: 100%; height: 300px; border: none; }
.contact-social { margin-top: 24px; }
.contact-social-title {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--wine); font-weight: 500; margin-bottom: 12px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border); color: var(--text-soft);
  text-decoration: none; font-size: 18px; transition: all .2s;
}
.social-link:hover { background: var(--wine); color: var(--cream); border-color: var(--wine); }

/* Hours table */
.hours-card {
  background: var(--cream); border: 1px solid var(--border);
  padding: 28px;
}
.hours-card-title {
  font-family: 'Cormorant', serif; font-size: 24px; font-weight: 600;
  color: var(--wine-dark); margin-bottom: 20px;
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(110,46,46,.07);
  font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-soft); }
.hours-time { color: var(--wine); font-weight: 500; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer { background: var(--wine-dark); color: var(--cream); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 72px 60px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  font-family: 'Cormorant', serif; font-size: 36px; font-weight: 700;
  color: var(--cream); letter-spacing: 0.04em; margin-bottom: 6px;
}
.footer-tagline {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,243,221,0.4); margin-bottom: 16px;
}
.footer-about { font-size: 13px; color: rgba(255,243,221,0.55); line-height: 1.7; }
.footer-col-title {
  font-size: 9px; letter-spacing: 0.36em; text-transform: uppercase;
  color: rgba(255,243,221,0.4); font-weight: 500;
  margin-bottom: 16px;
}
.footer-links-col a,
.footer-links-col span {
  display: block; font-size: 13px; color: rgba(255,243,221,0.6);
  text-decoration: none; margin-bottom: 9px;
  transition: color .2s;
}
.footer-links-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,243,221,0.1);
  padding: 20px 60px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,243,221,0.3);
  max-width: 100%;
}
.footer-bottom a {
  color: rgba(255,243,221,0.3); text-decoration: none; transition: color .2s;
}
.footer-bottom a:hover { color: var(--cream); }

/* ─────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

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

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid, .about-two-col { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { height: 320px; }
  .regular-menu { grid-template-columns: 1fr; }
  .cat-sidebar { display: flex; gap: 8px; overflow-x: auto; }
  .cat-item { border-left: none; border-bottom: 2px solid transparent; white-space: nowrap; }
  .cat-item.active { border-left: none; border-bottom-color: var(--wine); }
  .fix-detail-banner { grid-template-columns: 1fr; }
  .fix-sections-grid { grid-template-columns: 1fr; }
  .contact-page-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  #nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 64px 20px; }
  .hero-title { font-size: clamp(72px, 18vw, 100px); }
  .page-hero { padding: 80px 20px 48px; }
  .numbers-inner { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 32px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 8px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-page-content { padding: 40px 20px; }
  .gallery-page-inner, .menu-page-inner { padding: 40px 20px; }
  .contact-page-inner { padding: 40px 20px; }
}

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity .2s;
}
.nav-logo-img:hover { opacity: .85; }
#nav.scrolled .nav-logo-img { height: 60px; }

.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
  /* Footer koyu bg üzerinde beyaz/krem tonlu logolar için: */
  filter: brightness(0) invert(1) sepia(1) saturate(0.3) hue-rotate(0deg) opacity(0.9);
}
