/* ===== 1983 Beyoğlu Keşan - Premium Café Website ===== */

/* --- CSS Variables --- */
:root {
  /* Color palette - RAL 8017 Chocolate Brown base */
  --gold: #B58C67;
  --gold-light: #FFBC7D;
  --gold-dark: #9A7552;
  --chocolate: #45322E;
  --chocolate-light: #5A4440;
  --chocolate-medium: #45322E;
  --cream: #FBF7F3;
  --cream-dark: #F0E4D7;
  --cream-warm: #F7F1EB;
  --espresso: #2E1F1B;
  --mocha: #5A4440;
  --caramel: #FFBC7D;
  --strawberry: #C62828;
  --pistachio: #558B2F;
  --white: #FFFFFF;
  --text-dark: #2E1F1B;
  --text-medium: #5A4440;
  --text-light: #7A6455;
  --text-cream: #D4BBA6;

  /* Typography - matched to 1983beyoglu.com */
  --font-display: 'Cormorant', 'Georgia', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
  --font-elegant: 'Cormorant', 'Georgia', serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container-px: clamp(16px, 4vw, 40px);
  --container-max: 1280px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease-out); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.preloader-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 30px;
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(201,169,110,0.2);
  border-radius: 3px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  animation: preloaderFill 1.5s var(--ease-out) forwards;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes preloaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* --- Navigation --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}
#navbar.scrolled {
  background: rgba(26, 14, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.3s var(--ease-out);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-cream);
  border-radius: 30px;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-cream);
  border: 1px solid rgba(201,169,110,0.3);
  font-size: 1rem;
  transition: all 0.3s var(--ease-out);
}
.nav-social:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
  transform: scale(1.1);
}
.nav-phone {
  padding: 8px 20px;
  background: var(--gold);
  color: var(--espresso);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
}
.nav-phone:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201,169,110,0.4);
}
.nav-phone i { margin-right: 6px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--espresso);
  overflow: hidden;
}
/* Hero Video Background - Desktop & Mobile */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}
.hero-video-desktop { display: block; }
.hero-video-mobile { display: none; }

@media (max-width: 768px) {
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,69,19,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(201,169,110,0.05) 0%, transparent 60%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-px);
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 30px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s var(--ease-out) forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) forwards;
}
.hero-title-line:nth-child(1) { animation-delay: 0.5s; }
.hero-title-line:nth-child(2) { animation-delay: 0.7s; }
.hero-title-line:nth-child(3) { animation-delay: 0.9s; }

.hero-title-accent {
  background: linear-gradient(135deg, var(--gold), var(--caramel), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-cream);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s 1.1s var(--ease-out) forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 1.3s var(--ease-out) forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s 1.5s var(--ease-out) forwards;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-plus,
.hero-stat-decimal {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}
.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-cream);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,169,110,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 0.8s 2s var(--ease-out) forwards;
}
.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-cream);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(201,169,110,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso);
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(201,169,110,0.4);
}
.btn-outline:hover {
  background: rgba(201,169,110,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cream);
  transform: translateY(-3px);
}

/* --- Section Common --- */
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(201,169,110,0.1);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 16px;
  border: 1px solid rgba(201,169,110,0.2);
}
.section-tag i { margin-right: 6px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title .accent {
  background: linear-gradient(135deg, var(--gold-dark), var(--caramel));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- About Section --- */
.about-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(62,39,35,0.15);
}
.about-img-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.about-img-main:hover img { transform: scale(1.05); }

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 10px 40px rgba(62,39,35,0.2);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--espresso);
  box-shadow: 0 10px 30px rgba(201,169,110,0.4);
  animation: rotateSlow 20s linear infinite;
}
.experience-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.experience-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-content .section-tag { background: rgba(201,169,110,0.1); }

.about-story {
  margin-bottom: 40px;
}
.about-story p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-story p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-dark);
  float: left;
  line-height: 1;
  margin-right: 8px;
  margin-top: 4px;
}

.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  transition: all 0.3s var(--ease-out);
}
.about-feature:hover {
  background: rgba(201,169,110,0.05);
  transform: translateX(8px);
}
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso);
  font-size: 1.1rem;
}
.feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Why Us Section --- */
.whyus-section {
  padding: var(--section-py) 0;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.whyus-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.whyus-section .section-tag {
  background: rgba(201,169,110,0.15);
  color: var(--gold-light);
  border-color: rgba(201,169,110,0.3);
}
.whyus-section .section-title { color: var(--cream); }
.whyus-section .section-desc { color: var(--text-cream); }

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.whyus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.whyus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.whyus-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-8px);
}
.whyus-card:hover::before { opacity: 1; }

.whyus-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--espresso);
  transition: transform 0.4s var(--ease-spring);
}
.whyus-card:hover .whyus-icon { transform: scale(1.1) rotate(-5deg); }

.whyus-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.whyus-card p {
  font-size: 0.9rem;
  color: var(--text-cream);
  line-height: 1.7;
}

/* --- Menu Section --- */
.menu-section {
  padding: var(--section-py) 0;
  background: var(--cream-warm);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 12px 28px;
  border: 2px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  background: transparent;
  color: var(--text-medium);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.menu-tab i { margin-right: 8px; }
.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201,169,110,0.05);
}
.menu-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(201,169,110,0.3);
}

.menu-content { display: none; }
.menu-content.active { display: block; animation: fadeIn 0.5s var(--ease-out); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.menu-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(201,169,110,0.1);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(62,39,35,0.1);
  border-color: rgba(201,169,110,0.3);
}
.menu-card.featured {
  border-color: rgba(201,169,110,0.3);
  background: linear-gradient(135deg, var(--white) 0%, rgba(201,169,110,0.05) 100%);
}
/* Menu card image */
.menu-card-img {
  margin: -28px -28px 16px -28px;
  height: 180px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}

.menu-card-badge {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}
.menu-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.menu-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
}
.menu-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}
.menu-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.menu-tag {
  padding: 4px 12px;
  background: rgba(201,169,110,0.1);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}
.menu-tag i { margin-right: 4px; }

/* --- Gallery Section --- */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.large {
  grid-column: span 2;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,14,10,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}

/* --- Reviews Section --- */
.reviews-section {
  padding: var(--section-py) 0;
  background: var(--espresso);
  position: relative;
}
.reviews-section .section-tag {
  background: rgba(201,169,110,0.15);
  color: var(--gold-light);
  border-color: rgba(201,169,110,0.3);
}
.reviews-section .section-title { color: var(--cream); }
.reviews-section .section-desc { color: var(--text-cream); }

.reviews-rating-summary {
  text-align: center;
  margin-bottom: 50px;
}
.rating-big {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.rating-stars {
  font-size: 1.3rem;
  color: var(--gold);
  margin: 8px 0;
}
.rating-stars i { margin: 0 2px; }
.rating-count {
  font-size: 0.9rem;
  color: var(--text-cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s var(--ease-out);
}
.review-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--espresso);
  flex-shrink: 0;
}
.review-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
}
.review-date {
  font-size: 0.8rem;
  color: var(--text-cream);
}
.review-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.75rem;
}
.review-stars i { margin: 0 1px; }
.review-text {
  font-size: 0.92rem;
  color: var(--text-cream);
  line-height: 1.8;
  font-style: italic;
}

/* --- Contact Section --- */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--cream-warm);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-logo {
  width: 160px;
  margin-bottom: 12px;
}
.contact-tagline {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item > i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold-dark); }

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(62,39,35,0.1);
  border: 3px solid rgba(201,169,110,0.2);
}
.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: none;
}
.contact-cta {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.contact-cta .btn-outline-light {
  color: var(--text-dark);
  border-color: rgba(62,39,35,0.2);
}
.contact-cta .btn-outline-light:hover {
  border-color: var(--chocolate);
  background: rgba(62,39,35,0.05);
}

/* --- Footer --- */
.footer {
  background: var(--espresso);
  padding: 24px 0;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  color: var(--text-cream);
  font-size: 0.85rem;
}
.footer-sep { margin: 0 12px; opacity: 0.3; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--text-cream);
  transition: all 0.3s var(--ease-out);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
  transform: scale(1.1);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--espresso);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.5);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid { gap: 50px; }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .gallery-item.large { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(26, 14, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.4s var(--ease-out);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link {
    font-size: 1.1rem;
    padding: 14px 20px;
    border-radius: 12px;
  }
  .nav-hamburger { display: flex; }
  .nav-phone { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-secondary { right: 10px; bottom: -20px; width: 160px; height: 160px; }
  .about-experience-badge { left: 10px; top: -10px; width: 100px; height: 100px; }
  .experience-number { font-size: 1.5rem; }

  .whyus-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item.large { grid-column: span 2; }

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

  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 2rem; }

  .hero-cta { flex-direction: column; align-items: center; }
  .contact-cta { flex-direction: column; }

  .footer-content { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item.large { grid-column: span 1; }

  .menu-tabs { gap: 8px; }
  .menu-tab { padding: 10px 18px; font-size: 0.85rem; }
}
