:root {
  --charcoal: #1a1a1a;
  --charcoal-light: #2c2c2c;
  --beige: #d4c5a9;
  --beige-dark: #c4b594;
  --burgundy: #722f37;
  --burgundy-light: #8b3a4a;
  --emerald: #50c878;
  --emerald-dark: #2e8b57;
  --cream: #f5f0eb;
  --cream-light: #faf6f0;
  --gold: #c9a84c;
  --gold-light: #d4af37;
  --gold-dark: #b8860b;
  --white: #ffffff;
  --off-white: #fdfdfd;
  --text-light: #999;
  --text-muted: #777;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.2);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background: var(--charcoal);
  color: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--charcoal); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section {
  padding: 120px 0;
  position: relative;
  background: var(--charcoal);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.gold-text { color: var(--gold); }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.divider span {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-desc {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::after { width: 300px; height: 300px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-sm { padding: 12px 28px; font-size: 11px; }
.btn-block { width: 100%; }

#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s, visibility 0.8s;
}

#loader.loaded { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; }

.loader-logo {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 30px;
  letter-spacing: 8px;
}

.loader-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  animation: loaderLine 2s ease forwards;
}

@keyframes loaderLine {
  0% { width: 0; }
  50% { width: 200px; }
  100% { width: 200px; }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-slow);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.97);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(20px);
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 600;
}

.nav-menu { display: flex; gap: 25px; align-items: center; }

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1920&q=80') center/cover no-repeat;
  animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg,
    rgba(26,26,26,0.85) 0%,
    rgba(26,26,26,0.5) 50%,
    rgba(26,26,26,0.85) 100%
  );
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 24px;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-title .gold-text {
  font-style: italic;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: fadeIn 1s ease 1.5s forwards;
  opacity: 0;
}

.hero-scroll span {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.about { background: var(--charcoal); }

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

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image:hover img { transform: scale(1.05); }

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 30px;
  text-align: center;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.about-text {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateX(5px);
}

.about-feature i {
  color: var(--gold);
  font-size: 16px;
}

.parallax-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26,26,26,0.65);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}

.parallax-content h2 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.parallax-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.8;
}

.menu { background: var(--charcoal); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

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

.menu-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 168, 76, 0.3);
}

.menu-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.menu-card:hover .menu-card-image img { transform: scale(1.08); }

.menu-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.95), transparent);
  padding: 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.menu-card:hover .menu-card-overlay { transform: translateY(0); }

.menu-ingredients {
  font-size: 13px;
  color: var(--cream);
  font-weight: 300;
}

.menu-card-body {
  padding: 25px;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.menu-card-header h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}

.menu-price {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
}

.menu-card-body p {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 300;
}

.menu-chef {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--emerald);
  padding: 4px 12px;
  border: 1px solid rgba(80, 200, 120, 0.3);
}

.specials {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.special-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: var(--transition);
}

.special-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.special-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: var(--burgundy);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
}

.special-image {
  height: 250px;
  overflow: hidden;
}

.special-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.special-card:hover .special-image img { transform: scale(1.08); }

.special-body { padding: 30px; }

.special-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.special-body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.special-body p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

.special-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.special-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.experience { background: var(--charcoal); }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.exp-card {
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.exp-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.exp-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--gold);
  transition: var(--transition);
}

.exp-card:hover .exp-icon {
  background: var(--gold);
  color: var(--charcoal);
}

.exp-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.exp-card > p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

.exp-list { list-style: none; }

.exp-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.exp-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 8px;
}

.chefs { background: var(--charcoal); }

.chefs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.chef-card {
  text-align: center;
  transition: var(--transition);
}

.chef-card:hover { transform: translateY(-10px); }

.chef-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  height: 320px;
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.chef-card:hover .chef-image img { transform: scale(1.05); }

.chef-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9), transparent);
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  transform: translateY(100%);
  transition: var(--transition);
}

.chef-card:hover .chef-social { transform: translateY(0); }

.chef-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: var(--transition);
}

.chef-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.chef-info h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.chef-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.chef-info p {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

.reservations {
  background: linear-gradient(180deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.reservation-form { background: rgba(255,255,255,0.02); padding: 40px; border: 1px solid rgba(255,255,255,0.05); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--charcoal); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  text-align: center;
  padding: 60px 20px;
}

.form-success.hidden { display: none; }

.form-success i {
  font-size: 48px;
  color: var(--emerald);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 10px;
}

.form-success p { color: var(--text-light); }

.reservation-info { display: flex; flex-direction: column; gap: 20px; }

.res-info-card {
  padding: 25px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.res-info-card:hover { border-color: rgba(201, 168, 76, 0.3); }

.res-info-card i {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 15px;
}

.res-info-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.res-info-card p {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
}

.res-info-card a { color: var(--gold); }
.res-info-card a:hover { text-decoration: underline; }

.events {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.event-image {
  height: 220px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.event-card:hover .event-image img { transform: scale(1.08); }

.event-body { padding: 30px; }

.event-body h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.event-capacity {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.event-body > p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 15px;
}

.event-features { list-style: none; }

.event-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-features li i { color: var(--emerald); font-size: 12px; }

.events-cta {
  text-align: center;
  margin-top: 60px;
  padding: 60px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.events-cta h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 10px;
}

.events-cta p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.testimonials { background: var(--charcoal); }

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: 20px;
  text-align: center;
}

.testimonial-stars {
  margin-bottom: 25px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 18px;
  margin: 0 2px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-author h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--white);
  text-align: left;
}

.testimonial-author span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 300;
  text-align: left;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active { background: var(--gold); }

.gallery { background: var(--charcoal); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: auto; }
.gallery-item:nth-child(2) { grid-column: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-column: span 1; }
.gallery-item:nth-child(8) { grid-column: span 1; }

.gallery-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26,26,26,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}

.blog { background: var(--charcoal); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-image img { transform: scale(1.08); }

.blog-body { padding: 25px; }

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-meta span { display: flex; align-items: center; gap: 5px; }

.blog-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-body > p {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-link:hover { gap: 12px; }

.newsletter {
  background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal));
  padding: 80px 0;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--white);
  margin-bottom: 15px;
}

.newsletter-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus { border-color: var(--gold); }

.contact { background: var(--charcoal); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 30px; }

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.contact-item:hover { border-color: rgba(201, 168, 76, 0.3); }

.contact-item i {
  font-size: 24px;
  color: var(--gold);
  margin-top: 3px;
}

.contact-item h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-item a { color: var(--gold); }
.contact-item a:hover { text-decoration: underline; }

.contact-form { background: rgba(255,255,255,0.02); padding: 40px; border: 1px solid rgba(255,255,255,0.05); }

.map-section { height: 400px; }

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) invert(0.9);
}

.footer {
  background: #111;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer-links h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul li { margin-bottom: 10px; }

.footer-links ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links ul li a:hover { color: var(--gold); padding-left: 5px; }

.footer-newsletter h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-newsletter p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.footer-form { display: flex; }

.footer-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
}

.footer-form button {
  padding: 12px 20px;
  background: var(--gold);
  border: none;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}

.footer-form button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-5px);
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.modal.active { display: flex; }

.modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover { color: var(--gold); }

.detail-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow-y: auto;
}

.detail-modal.active { display: flex; }

.detail-modal-content {
  background: var(--charcoal-light);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.2);
  animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.detail-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 36px;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  line-height: 1;
}

.detail-modal-close:hover { color: var(--white); transform: rotate(90deg); }

.detail-modal-inner { padding: 0; }

.detail-header {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.detail-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-header-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--charcoal-light), transparent);
  padding: 40px 40px 30px;
}

.detail-header-overlay h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 5px;
}

.detail-header-overlay .detail-price {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
}

.detail-body { padding: 40px; }

.detail-section {
  margin-bottom: 30px;
}

.detail-section h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.detail-section p,
.detail-section li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.detail-section ul { list-style: none; padding: 0; }

.detail-section ul li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.detail-section ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 8px;
}

.detail-badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-right: 8px;
  margin-bottom: 8px;
}

.detail-badge.gold { background: var(--gold); color: var(--charcoal); }
.detail-badge.emerald { border: 1px solid var(--emerald); color: var(--emerald); }
.detail-badge.burgundy { border: 1px solid var(--burgundy); color: var(--burgundy-light); }

.detail-blockquote {
  border-left: 3px solid var(--gold);
  padding: 15px 20px;
  margin: 15px 0;
  background: rgba(201, 168, 76, 0.05);
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
}

.detail-cta {
  text-align: center;
  padding: 30px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.modal-caption {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  text-align: center;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 16px;
  padding: 10px 20px;
  background: rgba(26,26,26,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease infinite alternate;
}

.page-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26,26,26,0.7);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
}

.page-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-title { font-size: 52px; }
  .section-title { font-size: 40px; }
  .about-grid { gap: 40px; }
  .specials-grid,
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .chefs-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .parallax-content h2 { font-size: 40px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26,26,26,0.99);
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    gap: 5px;
  }

  .nav-menu.active { right: 0; }

  .nav-toggle { display: flex; }

  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 14px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .section { padding: 80px 0; }
  .section-title { font-size: 32px; }
  .section-subtitle::before,
  .section-subtitle::after { width: 15px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 350px; }
  .about-image-badge { width: 120px; height: 120px; }
  .badge-number { font-size: 22px; }

  .parallax-section { height: 350px; background-attachment: scroll; }
  .parallax-content h2 { font-size: 32px; }

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

  .specials-grid,
  .events-grid,
  .chefs-grid,
  .blog-grid { grid-template-columns: 1fr; }

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

  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: span 2; }

  .newsletter-form { flex-direction: column; }

  .menu-tabs { gap: 5px; }
  .menu-tab { padding: 8px 16px; font-size: 10px; }

  .testimonial-text { font-size: 18px; }
  .events-cta { padding: 40px 20px; }

  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .section-title { font-size: 26px; }
  .container { padding: 0 15px; }
  .hero-badge { font-size: 9px; padding: 6px 16px; }
  .about-image img { height: 280px; }
}
