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

:root {
  --bordo: #330B0B;
  --bordo-dark: #220707;
  --bordo-light: #4A1515;
  --bordo-mid: #3D0E0E;
  --cream: #F5F0E8;
  --cream-dark: #E8DFD0;
  --cream-light: #FAF7F2;
  --gold: #D4B876;
  --gold-light: #E8D5A0;
  --text-dark: #2D1B1B;
  --text-muted: #8A7A7A;
  --shadow: 0 2px 16px rgba(51, 11, 11, 0.08);
  --shadow-hover: 0 8px 32px rgba(51, 11, 11, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

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

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  background: var(--bordo);
  z-index: 1000;
  padding: 0 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  border-radius: 6px;
}
.nav-logo-text {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-taste {
  font-weight: 700;
  color: var(--gold);
}
.logo-inspectors {
  font-weight: 400;
  color: var(--gold);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hamburger */
.hamburger-wrap {
  position: relative;
}
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  cursor: pointer;
  color: var(--cream);
  font-size: 18px;
  transition: all 0.2s;
}
.hamburger-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold-light);
}
.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.hamburger-lines span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: all 0.3s;
}
.hamburger-wrap.open .hamburger-lines span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger-wrap.open .hamburger-lines span:nth-child(2) {
  opacity: 0;
}
.hamburger-wrap.open .hamburger-lines span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.hamburger-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bordo);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 1001;
  overflow: hidden;
}
.hamburger-wrap.open .hamburger-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hamburger-panel a {
  display: block;
  padding: 13px 20px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hamburger-panel a:last-child {
  border-bottom: none;
}
.hamburger-panel a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--gold-light);
  padding-left: 26px;
}
.hamburger-panel .panel-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 4px 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  cursor: pointer;
  color: var(--cream);
  font-size: 13px;
  font-family: inherit;
  line-height: 1;
  transition: all 0.2s;
  height: 34px;
  box-sizing: border-box;
}
.lang-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold-light);
}
.lang-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.lang-label {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.lang-wrap { position: relative; }
.lang-toggle .lang-arrow { font-size: 10px; opacity: 0.6; margin-left: 2px; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bordo);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  min-width: 190px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.22s ease;
  z-index: 1002;
  overflow: hidden;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
  min-height: 42px;
  box-sizing: border-box;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: rgba(255,255,255,0.08); }
.lang-option.active { background: rgba(212,184,118,0.14); color: var(--gold); }
.lang-option .lang-flag { width: 22px; height: 16px; border-radius: 2px; }
.lang-option .lang-name { font-size: 12px; color: rgba(255,255,255,0.58); margin-left: auto; font-weight: 400; }
@media (max-width: 768px) {
  .lang-wrap { position: static; }
  .lang-dropdown { right: 10px; left: 10px; min-width: auto; }
  .lang-toggle { min-width: 72px; height: 34px; padding: 5px 8px; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: url('/istanbul.jpg') center/cover no-repeat;
  padding: 80px 20px 70px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(51, 11, 11, 0.55) 0%,
    rgba(51, 11, 11, 0.50) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 5px;
  margin-bottom: 30px;
  line-height: 1.2;
}
.hero-title .logo-taste {
  font-weight: 700;
}
.hero-title .logo-inspectors {
  font-weight: 400;
}

/* ========== SEARCH BAR ========== */
.hero-search {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.hero-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}
.hero-search input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid rgba(212, 184, 118, 0.4);
  border-radius: 50px;
  background: rgba(255,255,255,0.95);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  transition: all 0.2s;
  outline: none;
}
.hero-search input::placeholder {
  color: var(--text-muted);
}
.hero-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 184, 118, 0.15);
}
.hero-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  max-height: 320px;
  overflow-y: auto;
  display: none;
  z-index: 9999;
}
.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--text-dark);
  transition: background 0.15s;
  border-bottom: 1px solid var(--cream-dark);
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  background: var(--cream);
  color: var(--bordo);
}
.search-result-type {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--cream-dark);
  padding: 2px 8px;
  border-radius: 10px;
}

/* ========== FEATURED SECTION ========== */
.featured-section {
  padding: 60px 20px 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.featured-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.featured-scroll-wrapper {
  position: relative;
}
.featured-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.featured-scroll::-webkit-scrollbar {
  display: none;
}
.featured-card {
  min-width: 270px;
  max-width: 270px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8e8e8;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.featured-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s;
  display: block;
}
.featured-card:hover .featured-card-img {
  filter: grayscale(0%);
}
.featured-card-placeholder {
  width: 100%;
  height: 180px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ccc;
  font-family: 'Playfair Display', serif;
}
.featured-card:hover .featured-card-placeholder {
  filter: grayscale(0%);
}
.featured-card-body {
  padding: 16px;
}
.featured-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}
.featured-card-location {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}
.featured-card-scores {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: #666;
}
.featured-card-scores span {
  font-weight: 500;
}
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--bordo);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.scroll-arrow:hover {
  background: var(--bordo-light);
  transform: translateY(-50%) scale(1.05);
}
.scroll-right {
  right: -8px;
}

/* ========== SECTIONS ========== */
main {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
}
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}
.section-header {
  margin-bottom: 28px;
}
.section-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--bordo);
  letter-spacing: -0.3px;
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: var(--cream-dark);
  padding: 30px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.page-header-content {
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb:hover { color: var(--bordo); }
.breadcrumb-sep { margin: 0 6px; color: var(--text-muted); }
.breadcrumb-current { font-size: 12px; color: var(--text-dark); }
.page-title {
  font-size: 30px;
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: -0.5px;
  color: var(--bordo);
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
}
.page-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

/* ========== CITY GRID ========== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.city-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s;
}
.city-card:hover {
  border-color: var(--bordo);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.city-card-sm { padding: 14px; }
.city-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--bordo);
}

/* ========== SUBCITY SELECTOR ========== */
.region-header { text-align: center; margin-bottom: 22px; }
.section-subtitle {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}
.subcity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}
.subcity-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 168px;
  padding: 26px 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 184, 118, 0.32);
  color: var(--cream);
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.subcity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 8%, rgba(212, 184, 118, 0.14), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.subcity-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 20px 44px rgba(51, 11, 11, 0.4), 0 0 0 1px rgba(212, 184, 118, 0.45);
}
.subcity-avrupa { background: linear-gradient(150deg, #240707 0%, #3D0E0E 55%, #4A1515 100%); }
.subcity-anadolu { background: linear-gradient(150deg, #3D0E0E 0%, #5A2E12 100%); }
.subcity-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.92;
}
.subcity-scene { width: 100%; height: 100%; display: block; }
.subcity-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.subcity-kicker {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.62);
  font-weight: 600;
}
.subcity-name {
  font-size: 34px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.subcity-arrow {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 184, 118, 0.12);
  border: 1px solid rgba(212, 184, 118, 0.4);
  color: var(--gold);
  transition: transform 0.35s ease, background 0.35s ease;
}
.subcity-card:hover .subcity-arrow {
  transform: translateX(5px);
  background: rgba(212, 184, 118, 0.22);
}

/* Avrupa scene: gece Boğaz köprüsü + silüet (altın) */
.subcity-avrupa .sky { fill: transparent; }
.subcity-avrupa .water { fill: rgba(212, 184, 118, 0.07); }
.subcity-avrupa .skyline path { fill: rgba(212, 184, 118, 0.10); stroke: var(--gold); stroke-width: 1; }
.subcity-avrupa .skyline .dome { fill: rgba(212, 184, 118, 0.16); stroke: var(--gold); stroke-width: 1; }
.subcity-avrupa .bridge path { fill: none; stroke: var(--gold); stroke-width: 1.1; opacity: 0.85; }
.subcity-avrupa .moon { fill: var(--gold-light); opacity: 0.92; }

/* Anadolu scene: tepeler + kule + güneş (amber) */
.subcity-anadolu .sky { fill: transparent; }
.subcity-anadolu .hill { fill: rgba(212, 184, 118, 0.09); }
.subcity-anadolu .hill2 { fill: rgba(212, 184, 118, 0.17); }
.subcity-anadolu .tower path { fill: none; stroke: var(--gold); stroke-width: 1.3; }
.subcity-anadolu .tower circle { fill: var(--gold); stroke: none; }
.subcity-anadolu .sun { fill: var(--gold-light); opacity: 0.92; }

@media (max-width: 640px) {
  .subcity-grid { grid-template-columns: 1fr; gap: 16px; }
  .subcity-card { min-height: 150px; padding: 22px; }
  .subcity-name { font-size: 28px; }
}

/* ========== VENUE GRID ========== */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 100%;
}
.venue-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}
.venue-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.venue-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--bordo);
}
.venue-card-body { padding: 20px; }
.venue-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.venue-card-image-placeholder {
  width: 100%;
  height: 160px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 28px;
  font-family: 'Playfair Display', serif;
}
.venue-type-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bordo);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.venue-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.venue-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.venue-scores {
  display: flex;
  gap: 16px;
}
.score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.score-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.score-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--bordo);
}
.venue-review-count {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ========== VENUE DETAIL ========== */
.venue-detail { max-width: 900px; }
.venue-detail-header { margin-bottom: 28px; }
.venue-detail-type { margin-bottom: 8px; }
.venue-detail-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  color: var(--bordo);
}
.venue-detail-address {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.venue-detail-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.venue-scores-big {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) { .venue-scores-big { grid-template-columns: repeat(3, 1fr); } }
.ti-score-label {
  grid-column: 1 / -1;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.score-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 26px 20px;
  text-align: center;
}
.score-card-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.score-card-value {
  display: block;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: var(--bordo);
}
.score-card-total {
  background: var(--bordo);
  border-color: var(--bordo);
}
.score-card-total .score-card-label { color: rgba(255,255,255,0.6); }
.score-card-total .score-card-value { color: var(--cream); }

/* ========== REVIEWS ========== */
.review-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color: var(--bordo);
}
.review-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.review-section-head h3 { margin-bottom: 0; }
.btn-edit-review {
  background: var(--bordo);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.btn-edit-review:hover { background: #4a1010; }

.ti-review-card {
  background: linear-gradient(180deg, var(--cream-light), #fff);
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  margin-bottom: 22px;
}
.ti-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ti-badge {
  background: var(--bordo);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 999px;
}
.ti-date {
  font-size: 12px;
  color: var(--text-muted);
}
.ti-review-comment {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0;
  white-space: pre-line;
}
.ti-no-review {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
}
.review-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.btn-ghost {
  background: transparent;
  color: var(--bordo);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.btn-ghost:hover { background: var(--cream); }
.review-form-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
}
.review-form-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--bordo);
}
.review-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.star-group { flex: 1; min-width: 120px; }
.star-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  font-size: 13px;
  color: var(--text-dark);
}
.star-rating {
  display: flex;
  gap: 0.1rem;
  font-family: Georgia, 'Times New Roman', serif;
}
.star-btn {
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #ddd;
  padding: 0 2px;
  line-height: 1;
  width: 1.3em;
  font-family: Georgia, 'Times New Roman', serif;
  transition: color 0.1s;
}
.star-btn:hover { color: var(--gold); }
.review-comment {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
  min-height: 70px;
  margin-bottom: 14px;
  background: white;
}
.review-comment:focus {
  outline: none;
  border-color: var(--bordo);
  box-shadow: 0 0 0 3px rgba(51, 11, 11, 0.08);
}
.review-message {
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  font-size: 13px;
}
.review-message.success { background: #E8F0E8; color: #2D6B2D; }
.review-message.error { background: #F0E8E8; color: #B02D2D; }
.review-login-prompt {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 14px;
}
.review-login-prompt a {
  color: var(--bordo);
  font-weight: 500;
  text-decoration: underline;
}
.review-editor-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}
.review-editor-note svg { color: var(--gold); flex-shrink: 0; }
.reviews-list { display: flex; flex-direction: column; gap: 12px; }

/* ========== INSTAGRAM REVIEW ========== */
.ig-review { max-width: 820px; margin: 0 auto; }
.ig-review-card {
  background: linear-gradient(160deg, var(--bordo) 0%, var(--bordo-light) 100%);
  border: 1px solid rgba(212, 184, 118, 0.32);
  border-radius: var(--radius);
  padding: 26px;
  color: var(--cream);
  box-shadow: var(--shadow);
}
.ig-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.14);
  margin-bottom: 18px;
}
.ig-review-avatar {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(212, 184, 118, 0.12);
  border: 1px solid rgba(212, 184, 118, 0.4);
  color: var(--gold);
}
.ig-review-meta { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.ig-review-handle { font-weight: 700; color: var(--cream); font-size: 15px; }
.ig-review-date { font-size: 12px; color: rgba(245, 240, 232, 0.55); }
.ig-review-link {
  flex: 0 0 auto;
  font-size: 12px; font-weight: 600;
  color: var(--bordo);
  background: var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.ig-review-link:hover { opacity: 0.9; transform: translateY(-1px); }
.ig-gallery {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.ig-gallery-1 { grid-template-columns: 1fr; }
.ig-gallery-2 { grid-template-columns: repeat(2, 1fr); }
.ig-gallery-3 { grid-template-columns: repeat(3, 1fr); }
.ig-gallery-4 { grid-template-columns: repeat(2, 1fr); }
.ig-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 240, 232, 0.12);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ig-gallery img:hover { transform: scale(1.02); box-shadow: 0 8px 22px rgba(0,0,0,0.3); }
.ig-gallery img.expanded {
  position: fixed;
  inset: 0;
  margin: auto;
  width: auto;
  max-width: 92vw;
  max-height: 92vh;
  aspect-ratio: auto;
  object-fit: contain;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  border-radius: 8px;
  cursor: zoom-out;
}
.ig-caption {
  white-space: pre-line;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.92);
  background: rgba(245, 240, 232, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 16px 18px;
}
.ig-comments { margin-top: 18px; }
.ig-comments-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
}
.ig-comment {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}
.ig-comment-avatar {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(212, 184, 118, 0.15);
  color: var(--gold);
  font-weight: 700; font-size: 13px;
}
.ig-comment-text { margin: 0; font-size: 13.5px; line-height: 1.5; color: rgba(245, 240, 232, 0.88); }
@media (max-width: 560px) {
  .ig-review-card { padding: 20px; }
  .ig-review-head { flex-wrap: wrap; }
  .ig-review-link { flex-basis: 100%; text-align: center; margin-top: 12px; }
}
.review-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: border-color 0.2s;
}
.review-card-link { display: block; }
.review-card-link:hover { border-color: var(--bordo); }
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.review-author { font-weight: 600; font-size: 13px; color: var(--bordo); }
.review-date { font-size: 11px; color: var(--text-muted); }
.review-scores-mini {
  display: flex;
  gap: 14px;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.review-scores-mini strong { color: var(--bordo); }
.review-comment-text { font-size: 13px; color: var(--text-dark); line-height: 1.6; }

/* ========== VENUE HERO ========== */
.venue-hero {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.venue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(51,11,11,0.9));
}
.venue-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  width: 100%;
}
.venue-hero-badge { background: var(--gold); color: var(--bordo) !important; border: none; }
.venue-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.5px;
  font-family: 'Playfair Display', serif;
}

/* ========== AUTH ========== */
.auth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 60px);
  padding: 40px 20px;
  background: var(--cream);
}
.auth-card {
  background: var(--cream-light);
  padding: 40px 36px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 400px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--cream-dark);
}
.auth-card h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color: var(--bordo);
}
.auth-form { text-align: left; }
.auth-alt {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
}
.auth-alt a { color: var(--bordo); font-weight: 500; }
.alert {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-bottom: 16px;
}
.alert-error { background: #F0E8E8; color: #B02D2D; }

/* ========== FORMS ========== */
.form-card { max-width: 650px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--bordo);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bordo);
  box-shadow: 0 0 0 3px rgba(51, 11, 11, 0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-scores { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .form-row-scores { grid-template-columns: repeat(2, 1fr); } }
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0 18px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
.form-actions { display: flex; gap: 10px; margin-top: 20px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 11px 22px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-align: center;
}
.btn-primary {
  background: var(--bordo);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--bordo-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--cream-dark);
  color: var(--text-dark);
}
.btn-outline:hover {
  border-color: var(--bordo);
  color: var(--bordo);
}
.btn-sm {
  padding: 5px 12px;
  font-size: 12px;
  background: var(--cream-dark);
  color: var(--text-dark);
}
.btn-sm:hover { background: var(--cream); }
.btn-danger { background: #B02D2D; color: white; }
.btn-danger:hover { background: #8A2222; }
.btn-full { width: 100%; }

/* ========== TABLE ========== */
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--cream-dark);
  font-weight: 600;
  color: var(--bordo);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--cream-dark);
}
.admin-table tr:hover td { background: var(--cream-dark); }
.admin-table td a { color: var(--bordo); font-weight: 500; }
.admin-actions { display: flex; gap: 6px; }

/* ========== ADMIN ========== */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
}
.stat-value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--bordo);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.admin-tools {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* ========== BADGES ========== */
.badge-beta {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  background: var(--bordo);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-public {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  background: var(--cream-dark);
  color: var(--text-muted);
}

/* ========== EMPTY STATE ========== */
.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ========== STARS ========== */
.stars-display {
  display: flex;
  gap: 2px;
  margin-top: 4px;
  font-family: Georgia, 'Times New Roman', serif;
}
.star-full { color: var(--gold); font-size: 1.05rem; }
.star-half-bg {
  color: var(--gold);
  font-size: 1.05rem;
  position: relative;
  display: inline-block;
}
.star-half-bg:after {
  content: '\2605';
  color: #ddd;
  position: absolute;
  left: 0;
  top: 0;
  clip-path: inset(0 50% 0 0);
}
.star-empty { color: #ddd; font-size: 0.85rem; }
.stars-inline {
  color: var(--gold);
  font-size: 0.75rem;
  margin-left: 4px;
  font-family: Georgia, 'Times New Roman', serif;
}

/* ========== PRICE (CURRENCY) ========== */
.price-display { display: flex; gap: 3px; align-items: center; justify-content: center; }
.price-symbol { font-size: 18px; font-weight: 800; color: #ddd; transition: color 0.15s; line-height: 1; }
.price-symbol.filled { color: var(--gold); }
.price-rating { display: flex; gap: 6px; margin-bottom: 4px; }
.price-btn { font-size: 1.9rem; background: none; border: none; cursor: pointer; color: #ddd; padding: 0 4px; line-height: 1; transition: color 0.15s, transform 0.15s; font-weight: 800; min-width: 28px; }
.price-btn:hover { color: var(--gold); transform: scale(1.08); }
.price-card .price-display { margin-top: 6px; }
.price-card .price-symbol { font-size: 20px; }
.featured-card-price { display: flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 11px; color: #666; }
.featured-card-price .price-display { font-size: 13px; }
.featured-card-price .price-symbol { font-size: 13px; }
.venue-price { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 11px; color: #666; }
.venue-price .price-display { font-size: 14px; }
.venue-price .price-symbol { font-size: 14px; }

/* ========== VENUE GALLERY ========== */
.venue-gallery { margin-bottom: 28px; }
.venue-gallery-main {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  transition: all 0.3s;
}
.venue-gallery-main.expanded { cursor: zoom-out; max-height: none; }
.venue-map { margin-bottom: 28px; }
.venue-map > div { border-radius: var(--radius-sm) !important; }
.venue-description { margin-bottom: 36px; }
.venue-description h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  color: var(--bordo);
}
.venue-description p { color: var(--text-muted); line-height: 1.8; font-size: 14px; }

/* ========== CONTENT PAGES ========== */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  min-height: 50vh;
}
.content-page h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--bordo);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.content-page .content-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark);
}
.content-page .content-body h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--bordo);
  margin: 30px 0 14px;
  font-family: 'Playfair Display', serif;
}
.content-page .content-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--bordo);
  margin: 24px 0 10px;
}
.content-page .content-body p {
  margin-bottom: 14px;
}
.content-page .content-body ul, .content-page .content-body ol {
  margin: 10px 0 14px 24px;
}
.content-page .content-body li {
  margin-bottom: 6px;
}
.content-page .content-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--cream-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--text-muted);
}

/* ========== NEWS GRID ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--bordo);
}
.news-card-image {
  position: relative;
  width: 100%;
  height: 160px;
}
.news-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.9);
  color: var(--bordo);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
}
.news-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.news-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--bordo);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}
.news-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.news-readmore {
  font-size: 13px;
  font-weight: 600;
  color: var(--bordo);
  text-decoration: none;
  transition: color 0.2s;
}
.news-readmore:hover { color: var(--gold); }

/* ========== CONTACT FORM ========== */
.contact-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
}
.contact-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--bordo);
  margin-bottom: 30px;
  text-align: center;
}
.contact-form { }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--bordo);
  box-shadow: 0 0 0 3px rgba(51, 11, 11, 0.08);
}
.contact-form .form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form .form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}
.contact-form .form-success {
  text-align: center;
  padding: 30px;
  background: #E8F0E8;
  border-radius: var(--radius);
  color: #2D6B2D;
  font-size: 15px;
}

/* ========== SOCIAL MEDIA ========== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.social-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  display: block;
}
.social-card:hover {
  border-color: var(--bordo);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.social-card-icon {
  margin-bottom: 14px;
  display: block;
}
.social-card-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.social-card-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== GOOGLE RATING ========== */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}
.google-rating .stars {
  color: #F4B400;
  font-size: 11px;
  font-family: Georgia, serif;
}
.google-rating .rating-value {
  font-weight: 600;
  color: var(--text-dark);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bordo);
  padding: 40px 20px;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.footer-brand span {
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin: 0 6px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; }

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 768px) {
  .nav-inner { height: 50px; padding: 0 10px; }
  .nav-logo-img { height: 34px; }
  .nav-logo-text { font-size: 12px; letter-spacing: 1.5px; }
  .lang-toggle { padding: 0 6px; font-size: 10px; gap: 3px; height: 30px; }
  .lang-flag { width: 18px; height: 13px; }
  .hamburger-btn { width: 34px; height: 34px; }
  .hamburger-lines { width: 17px; gap: 3px; }
  .hamburger-panel { min-width: 220px; right: -6px; }
  .hamburger-panel a { padding: 12px 18px; font-size: 13px; }

  .hero { padding: 44px 16px 40px; }
  .hero-title { font-size: 24px; letter-spacing: 2px; margin-bottom: 22px; }
  .hero-search input { padding: 14px 16px 14px 44px; font-size: 15px; border-radius: 50px; }
  .hero-search-icon { left: 14px; }

  .featured-section { padding: 36px 16px 30px; }
  .featured-title { font-size: 18px; margin-bottom: 16px; }
  .featured-card { min-width: 220px; max-width: 220px; }
  .featured-card-img { height: 140px; }
  .featured-card-body { padding: 12px; }
  .featured-card-name { font-size: 13px; }
  .featured-card-location { font-size: 11px; margin-bottom: 6px; }
  .featured-card-scores { font-size: 10px; gap: 8px; }
  .scroll-arrow { width: 34px; height: 34px; font-size: 14px; right: -4px; }

  .section { padding: 30px 16px; }
  .section-title { font-size: 18px; }
  .page-title { font-size: 22px; }
  .page-header { padding: 20px 16px; }

  .venue-scores-big { grid-template-columns: repeat(2, 1fr); }
  .venue-scores-big .score-card-total { grid-column: span 2; }
  .score-card-value { font-size: 24px; }
  .venue-detail-title { font-size: 22px; }

  .admin-stats { grid-template-columns: 1fr; gap: 10px; }
  .stat-card { padding: 20px; }
  .stat-value { font-size: 28px; }
  .auth-card { padding: 28px 20px; }
  .review-stars { gap: 0.6rem; }
  .star-group { min-width: 70px; }
  .star-btn { font-size: 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-grid { grid-template-columns: 1fr; }

  .content-page { padding: 30px 16px 40px; min-height: 45vh; }
  .content-page h1 { font-size: 22px; margin-bottom: 20px; }
  .contact-section { padding: 30px 16px 40px; }
  .contact-section h1 { font-size: 22px; }
  .contact-form .form-group input,
  .contact-form .form-group textarea { padding: 12px 14px; font-size: 16px; }
  .social-grid { grid-template-columns: 1fr; gap: 12px; }
  .social-card { padding: 24px 16px; }
  .news-grid { grid-template-columns: 1fr; gap: 16px; }
  .news-title { font-size: 16px; }

  .footer { padding: 30px 16px; }
  .footer-brand span { font-size: 14px; }
  .footer-links a { font-size: 12px; margin: 0 4px; }
}

/* ========== RESPONSIVE: IPAD ========== */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero { padding: 60px 24px 50px; }
  .hero-title { font-size: 34px; }
  .hero-search input { max-width: 500px; }
  .featured-section { padding: 44px 24px; }
  .featured-card { min-width: 260px; max-width: 260px; }
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== iOS SAFE AREA ========== */
@supports (padding-top: env(safe-area-inset-top)) {
  .navbar {
    padding-top: env(safe-area-inset-top, 0);
    padding-left: max(20px, env(safe-area-inset-left, 0));
    padding-right: max(20px, env(safe-area-inset-right, 0));
  }
  body { padding-bottom: env(safe-area-inset-bottom, 0); }
}

/* ========== iOS FIXES ========== */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select, textarea, input {
    font-size: 16px !important;
  }
}

body {
  -webkit-overflow-scrolling: touch;
}

/* ========== MOBILE ENHANCEMENTS (iPhone) ========== */
@media (max-width: 768px) {
  /* dinamik viewport (iOS tarayici cubugu) */
  main { min-height: calc(100dvh - 60px); }
  .auth-section { min-height: calc(100dvh - 60px); }

  /* daha rahat dokunma hedefleri */
  .hamburger-btn { width: 40px; height: 40px; }

  /* venue hero */
  .venue-hero { height: 280px; }
  .venue-hero-content { padding: 20px 16px; }
  .venue-hero-title { font-size: 26px; line-height: 1.15; }

  /* degerlendirme basligi + buton alt satira */
  .review-section-head { flex-wrap: wrap; gap: 10px; align-items: flex-start; }
  .review-section-head h3 { flex: 1 1 auto; }
  .btn-edit-review { padding: 10px 16px; }

  .ti-review-card { padding: 20px 18px; }
  .review-form-card { padding: 20px 18px; }

  /* uzun URL / kelime tasma engelle */
  .ti-review-comment,
  .ig-caption,
  .content-page .content-body,
  .venue-detail-address,
  .venue-detail-location { overflow-wrap: anywhere; word-break: break-word; }

  /* puan formu: her kriter kendi satirinda */
  .form-row-scores { grid-template-columns: 1fr; }
  .review-stars { gap: 0.5rem; }
  .star-group { min-width: 0; flex: 1 1 100%; }
  .star-rating { justify-content: flex-start; }
  .star-btn { font-size: 1.8rem; width: 1.4em; }

  .venue-scores-big { gap: 12px; grid-template-columns: repeat(2, 1fr); }
  .venue-scores-big .score-card-total { grid-column: span 2; }
  .score-card { padding: 18px 12px; }

  /* mobilde yan yana, okla tek kart kaydırma - restoran ve şefler aynı boyut, arka plan sabit - iPhone 13 ve tüm modeller için hizalı */
  html, body { overflow-x: hidden; max-width: 100%; overscroll-behavior-x: none; }
  .hero { background-attachment: scroll; overflow: hidden; }
  .featured-section { padding: 32px 16px 28px; overflow: hidden; max-width: 100%; box-sizing: border-box; }
  .featured-title { padding: 0; margin-left: 0; margin-right: 0; }
  .featured-scroll-wrapper { overflow: hidden; padding: 0; position: relative; touch-action: pan-x; margin: 0; }
  .featured-scroll { flex-direction: row; overflow-x: auto; overflow-y: hidden; gap: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; padding-bottom: 10px; scrollbar-width: none; }
  .featured-scroll::-webkit-scrollbar { display: none; }
  .featured-card { min-width: 85vw; max-width: 85vw; flex: 0 0 85vw; scroll-snap-align: center; }
  .featured-card-img { height: 180px; filter: grayscale(0%); }
  .scroll-arrow { display: flex; width: 36px; height: 36px; font-size: 16px; align-items: center; justify-content: center; }
  .scroll-arrow.scroll-left { left: 8px; right: auto; }
  .scroll-arrow.scroll-right { right: 8px; }

@media (min-width: 769px) {
  .no-arrow-desktop .scroll-arrow { display: none !important; }
  .no-arrow-desktop .featured-scroll { overflow-x: visible; justify-content: center; scroll-snap-type: none; }
  .no-arrow-desktop .featured-card { min-width: 270px; max-width: 270px; flex: 0 0 270px; }
}

  /* admin tablolari mobilde */
  .admin-table th, .admin-table td { padding: 8px 10px; font-size: 12px; }
  .admin-actions { flex-wrap: wrap; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 21px; letter-spacing: 1.5px; }
  .featured-card { min-width: 85vw; max-width: 85vw; flex: 0 0 85vw; }
  .featured-card-img { height: 160px; }
  .score-card-value { font-size: 22px; }
  .venue-hero-title { font-size: 23px; }
  .ig-gallery-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ========== MAKALE KATEGORILERI (Şef / Anadolu / Mezapotamya) ========== */
.article-section { padding: 48px 20px 70px; max-width: 1200px; margin: 0 auto; }
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.article-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bordo);
}
.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.article-card:hover .article-card-media img { transform: scale(1.06); }
.article-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.article-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--bordo);
  line-height: 1.25;
  margin-bottom: 8px;
}
.article-card-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-more {
  margin-top: auto;
  padding-top: 16px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: .02em;
  transition: letter-spacing .3s ease;
}
.article-card:hover .article-card-more { letter-spacing: .06em; }

/* Detay sayfasi */
.article-detail { background: var(--cream); }
.article-hero {
  min-height: 58vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: var(--cream-light);
}
.article-hero-inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 70px 22px 48px;
}
.article-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin: 16px 0 12px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.article-hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--gold-light);
  max-width: 760px;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.breadcrumb-light a, .breadcrumb-light .breadcrumb-current { color: var(--cream-light); }
.breadcrumb-light .breadcrumb-sep { color: var(--gold); }

.article-body-wrap { padding: 56px 20px 72px; }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.95;
  color: var(--text-dark);
}
.article-body p { margin-bottom: 1.35em; }
.article-body p:first-child::first-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.1rem;
  line-height: .82;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--bordo);
}
.article-back { text-align: center; margin-top: 44px; }
.article-back-link {
  display: inline-block;
  color: var(--bordo);
  border: 1px solid var(--gold);
  background: var(--cream-light);
  padding: 11px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.article-back-link:hover { background: var(--gold); color: var(--bordo-dark); transform: translateY(-2px); }

@media (max-width: 640px) {
  .article-grid { grid-template-columns: 1fr; gap: 20px; }
  .article-hero { min-height: 46vh; }
  .article-hero-inner { padding: 48px 18px 34px; }
  .article-body-wrap { padding: 38px 18px 56px; }
  .article-body { font-size: 1.02rem; line-height: 1.85; }
  .article-body p:first-child::first-letter { font-size: 2.6rem; }
}

.featured-more-wrap { text-align: center; max-width: 1200px; margin: 22px auto 0; padding: 0 28px; }
.featured-more { display: inline-block; color: var(--bordo); border: 1px solid var(--gold); background: var(--cream-light); padding: 11px 28px; border-radius: 30px; font-weight: 600; transition: background .3s ease, color .3s ease, transform .3s ease; }
.featured-more:hover { background: var(--gold); color: var(--bordo-dark); transform: translateY(-2px); }
