/* =============================================
   KOZU-GRILL — style.css
   Theme: Dark graphite/chocolate + fiery orange
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --bg-deep:      #0f0a06;
  --bg-dark:      #1c1209;
  --bg-card:      #251810;
  --bg-card2:     #1e1510;
  --accent:       #ff6b1a;
  --accent-light: #ff8c42;
  --accent-glow:  rgba(255, 107, 26, 0.25);
  --white:        #ffffff;
  --off-white:    #f0ebe3;
  --muted:        #9e8c7a;
  --border:       rgba(255, 107, 26, 0.15);
  --font-head:    'Raleway', 'Arial', sans-serif;
  --font-body:    'Inter', 'Arial', sans-serif;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-deep);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  /* PageSpeed: шрифтовое сглаживание */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.section-label.light { color: var(--accent-light); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

/* =============================================
   NAVBAR
   ============================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(12, 8, 3, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-img {
  height: 36px;
  width: auto;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-text .accent { color: var(--accent); }

.site-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 0.85rem;
  transition: color var(--transition);
}
.site-nav .nav-link:hover { color: var(--accent); }

.btn-order-nav {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.3rem;
  border-radius: 4px;
  background: var(--accent);
  color: var(--white);
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-order-nav:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-1px);
}

/* Burger */
.burger-btn {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  background: transparent;
  padding: 0;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger-btn:not(.collapsed) span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn:not(.collapsed) span:nth-child(2) { opacity: 0; }
.burger-btn:not(.collapsed) span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 991px) {
  #navMenu {
    background: rgba(15, 10, 6, 0.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border);
    border-radius: 0 0 8px 8px;
  }
  .site-nav .nav-link { padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
  .btn-order-nav { margin-top: 1rem; display: inline-block; }
}

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

.hero-parallax-bg {
  position: absolute;
  inset: -80px 0;
  background-color: #3d1f0a; /* fallback пока грузится фото */
  will-change: transform;
  overflow: hidden;
}

/* LCP img — заменяет CSS background для лучшего PageSpeed */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 5, 0, 0.88) 0%,
    rgba(20, 8, 0, 0.75) 50%,
    rgba(30, 12, 2, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,107,26,0.4);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  background: rgba(255,107,26,0.08);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  max-width: 820px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(240,235,227,0.85);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-ghost-hero {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-ghost-hero:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,107,26,0.07);
}

.btn-fire-hero {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--accent);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,107,26,0.35);
}
.btn-fire-hero:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,26,0.5);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,107,26,0.6);
  border-bottom: 2px solid rgba(255,107,26,0.6);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* =============================================
   WHY US
   ============================================= */
.why-section {
  padding: 6rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.why-section .section-title { margin-bottom: 3.5rem; }

.why-strip {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.why-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition);
}
.why-item:hover { background: rgba(255,107,26,0.05); border-radius: 8px; }

.why-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin: 1.5rem 0;
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,26,0.1);
  border-radius: 50%;
  border: 1px solid var(--border);
}
.why-icon svg { width: 28px; height: 28px; }

.why-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.why-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-strip { flex-direction: column; }
  .why-divider { width: 100%; height: 1px; align-self: auto; margin: 0; }
  .why-item { padding: 1.5rem 1rem; }
}

/* =============================================
   TRADITION
   ============================================= */
.tradition-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.tradition-parallax {
  position: absolute;
  inset: -80px 0;
  background-image: url('assets/tradition-cooking.jpg');
  background-size: cover;
  background-position: center;
  background-color: #241408;
  will-change: transform;
}

.tradition-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,5,0,0.95) 0%, rgba(10,5,0,0.88) 50%, rgba(10,5,0,0.5) 100%);
}

.tradition-card {
  position: relative;
  z-index: 2;
}

.tradition-card .section-title { margin-bottom: 1.5rem; }

.tradition-text {
  color: rgba(240,235,227,0.8);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.tradition-quote {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--accent);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,107,26,0.06);
  border-radius: 0 4px 4px 0;
}

.tradition-image-wrap {
  position: relative;
  z-index: 2;
}
.tradition-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #2a1608 0%, #3d2010 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder::after {
  content: 'tradition.jpg';
  color: var(--muted);
  font-size: 0.8rem;
  font-style: italic;
}
.tradition-img-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =============================================
   MENU
   ============================================= */
.menu-section {
  padding: 7rem 0;
  background: var(--bg-deep);
}

.menu-section .section-title { margin-bottom: 0; }
.menu-section .section-label { display: block; text-align: center; }

/* Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem 0 0;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.menu-tab {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: transparent;
  border: none;
  padding: 0.8rem 1.8rem;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.menu-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.menu-tab:hover { color: var(--white); }
.menu-tab.active { color: var(--white); }
.menu-tab.active::after { transform: scaleX(1); }

.tab-icon { font-size: 1rem; }

/* Panels */
.menu-panel {
  display: none;
  padding: 3rem 0 0;
}
.menu-panel.active { display: block; animation: fadeSlide 0.4s ease; }

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

.menu-panel-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}

.menu-description {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 680px;
}

/* Price Table */
.table-wrap { overflow-x: auto; margin-bottom: 1.8rem; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.price-table thead tr {
  border-bottom: 1px solid var(--border);
}
.price-table th {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.8rem 1.2rem;
  text-align: left;
  white-space: nowrap;
}
.price-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255,107,26,0.07);
  color: rgba(240,235,227,0.85);
  vertical-align: middle;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(255,107,26,0.05); }

.highlight-row td { background: rgba(255,107,26,0.08); }
.highlight-row:hover td { background: rgba(255,107,26,0.12) !important; }

.size-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255,107,26,0.15);
  color: var(--accent);
  border: 1px solid rgba(255,107,26,0.3);
  padding: 0.1rem 0.45rem;
  border-radius: 3px;
  margin-right: 0.4rem;
  letter-spacing: 0.05em;
}

.price-cell {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* Includes */
.menu-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.include-tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

/* CTA */
.menu-cta { display: flex; justify-content: flex-end; }

/* Menu photo layout */
.menu-panel-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.menu-panel-photo {
  flex: 0 0 280px;
  border-radius: 8px;
  overflow: hidden;
  background: #2a1608;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-dish-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.menu-img-placeholder {
  background: linear-gradient(135deg, #2a1608 0%, #3d2010 100%) !important;
  min-height: 340px;
  width: 280px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-img-placeholder::after {
  content: 'фото блюда';
  color: var(--muted);
  font-size: 0.8rem;
  font-style: italic;
}
.menu-panel-content { flex: 1; min-width: 0; }

@media (max-width: 900px) {
  .menu-panel-layout { flex-direction: column; }
  .menu-panel-photo { flex: none; width: 100%; min-height: 240px; }
  .menu-dish-img { height: 240px; width: 100%; }
  .menu-img-placeholder { width: 100%; }
}

/* Half badge variant */
.half-badge {
  background: rgba(255,107,26,0.08);
  color: rgba(255,107,26,0.7);
  border-color: rgba(255,107,26,0.2);
}

/* Turkey special block */
.turkey-price-block {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}
.turkey-price-card {
  text-align: center;
  background: rgba(255,107,26,0.08);
  border: 1px solid rgba(255,107,26,0.25);
  border-radius: 8px;
  padding: 2.5rem 4rem;
}
.turkey-label {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.turkey-weight {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.turkey-price-main {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.turkey-price-main span { font-size: 1.4rem; font-weight: 400; }
.turkey-note {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* Buttons (shared) */
.btn-fire {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--accent);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(255,107,26,0.3);
}
.btn-fire:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,26,0.45);
}
.btn-fire--sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}
.btn-fire--full { width: 100%; justify-content: center; padding: 1rem; font-size: 0.95rem; }

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  padding: 7rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height var(--transition);
}
.service-card:hover::before { height: 100%; }
.service-card:hover { border-color: rgba(255,107,26,0.35); transform: translateY(-3px); }

.service-card--large {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(255,107,26,0.12) 0%, rgba(255,107,26,0.04) 100%);
}
.service-card--large::before { display: none; }

.service-icon-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,26,0.12);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.service-card--large .service-icon-wrap { margin-bottom: 0; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Warning */
.warning-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 107, 26, 0.07);
  border: 1px solid rgba(255,107,26,0.3);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}
.warning-icon {
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
}
.warning-content {
  flex: 1;
}
.warning-content strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.warning-content p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card--large { flex-direction: column; }
  .warning-block { flex-direction: column; text-align: center; }
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
  padding: 7rem 0 5rem;
  background: var(--bg-deep);
  overflow: hidden;
}
.gallery-section .section-title { text-align: center; margin-bottom: 3rem; }

.gallery-carousel {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  flex: 0 0 33.333%;
  padding: 0 0.75rem;
}

.gallery-img-wrap {
  position: relative;
  height: 300px;
  border-radius: 6px;
  overflow: hidden;
  background: #2a1608;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-slide:hover .gallery-img-wrap img { transform: scale(1.05); }

.gal-placeholder {
  background: linear-gradient(135deg, #2a1608 0%, #3d2010 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-placeholder::after {
  content: attr(data-label);
  color: var(--muted);
  font-size: 0.75rem;
  font-style: italic;
  padding: 1rem;
  text-align: center;
}

.gallery-caption {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.8rem;
  letter-spacing: 0.05em;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(15,10,6,0.85);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  line-height: 1;
}
.gallery-btn:hover { background: var(--accent); border-color: var(--accent); }
.gallery-btn--prev { left: 1rem; }
.gallery-btn--next { right: 1rem; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.gallery-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 991px) {
  .gallery-slide { flex: 0 0 50%; }
}
@media (max-width: 576px) {
  .gallery-slide { flex: 0 0 100%; }
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section {
  padding: 7rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.reviews-slider { position: relative; overflow: hidden; margin-top: 1rem; }

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide { flex: 0 0 100%; padding: 0 0.5rem; }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 3rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: var(--font-head);
  font-size: 6rem;
  color: rgba(255,107,26,0.12);
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.98rem;
  color: rgba(240,235,227,0.88);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  border: none;
  padding: 0;
  font-weight: 400;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #a83800 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}
.review-info span {
  font-size: 0.78rem;
  color: var(--muted);
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.review-btn:hover { background: var(--accent); border-color: var(--accent); }

.review-dots {
  display: flex;
  gap: 0.5rem;
}
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.review-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 576px) {
  .review-card { padding: 2rem 1.5rem; }
  .review-text { font-size: 0.95rem; }
}

/* =============================================
   CONTACTS
   ============================================= */
.contacts-section {
  padding: 7rem 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.contacts-section .section-title { margin-bottom: 2.5rem; }

.contact-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255,107,26,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.contact-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--off-white);
  font-weight: 500;
  transition: color var(--transition);
  display: block;
}
a.contact-value:hover { color: var(--accent); }

.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: #25d366;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.btn-wa-large:hover {
  background: #1ebe5b;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(255,107,26,0.05);
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* Toast */
.form-toast {
  display: none;
  background: rgba(255,107,26,0.1);
  border: 1px solid rgba(255,107,26,0.3);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--accent-light);
  text-align: center;
}
.form-toast.show { display: block; animation: fadeSlide 0.4s ease; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #08050200;
  background-color: #080401;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-logo .accent { color: var(--accent); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.halal-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid rgba(255,107,26,0.3);
  background: rgba(255,107,26,0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}

.footer-links h4,
.footer-contacts h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-phone {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--accent); }

.footer-addr {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,107,26,0.1);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}
.footer-disclaimer { font-style: italic; }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}

/* =============================================
   WHATSAPP STICKY
   ============================================= */
.wa-sticky {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
  color: var(--white);
}

@media (max-width: 991px) {
  .wa-sticky { display: flex; }
}

/* =============================================
   FADE-IN ANIMATION (IntersectionObserver)
   ============================================= */
.fade-observe {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-observe.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   UTILITIES
   ============================================= */
@media (max-width: 576px) {
  .menu-panel-inner { padding: 1.5rem; }
  .price-table th, .price-table td { padding: 0.7rem 0.8rem; }
  .turkey-price-card { padding: 2rem 2rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
