:root {
  --cream: #F5EFE0;
  --dark: #1A1208;
  --gold: #C8973A;
  --rust: #8B3A2A;
  --warm: #E8D5B0;
  --text: #2C1F0E;
  --whatsapp-green: #25D366;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(26,18,8,0.95), transparent);
  transition: all 0.4s;
}
nav.scrolled { background: rgba(26,18,8,0.98); padding: 1rem 4rem; }
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900; letter-spacing: 0.05em;
  color: var(--gold);
}
.logo span { font-style: italic; color: var(--cream); }
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a {
  text-decoration: none; color: var(--cream);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; transition: color 0.3s;
}
nav ul a:hover { color: var(--gold); }
.nav-btn {
  background: var(--gold); color: var(--dark);
  border: none; padding: 0.7rem 1.8rem;
  font-family: 'Jost', sans-serif; font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.nav-btn:hover { background: var(--cream); }

/* ── HERO ── */
.hero {
  height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1800&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: zoomOut 8s ease forwards;
}
@keyframes zoomOut { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,18,8,0.85) 0%, rgba(139,58,42,0.3) 50%, rgba(26,18,8,0.9) 100%);
}
.hero-content {
  position: relative; text-align: center; z-index: 2;
  animation: fadeUp 1.2s ease 0.3s both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
.hero-tag {
  display: inline-block;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 0.4rem 1.2rem; margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900; line-height: 0.9;
  margin-bottom: 0.3rem;
}
.hero h1 em {
  font-style: italic; color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 1rem; font-weight: 300; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--warm);
  margin: 1.5rem 0 2.5rem;
}
.hero-divider {
  width: 60px; height: 1px; background: var(--gold);
  margin: 0 auto 1.5rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; }
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 1rem 2.5rem; text-decoration: none;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase; transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid var(--cream); color: var(--cream);
  padding: 1rem 2.5rem; text-decoration: none;
  font-weight: 500; font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase; transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm); animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px; background: var(--gold);
  animation: grow 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* ── ABOUT ── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh; overflow: hidden;
}
.about-img {
  position: relative; overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img:hover img { transform: scale(1.05); }
.about-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, rgba(26,18,8,0.3));
}
.about-content {
  background: var(--dark);
  padding: 8rem 6rem;
  display: flex; flex-direction: column; justify-content: center;
}
.section-tag {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-content h2 em { font-style: italic; color: var(--gold); }
.about-content p {
  font-size: 1rem; line-height: 1.8; font-weight: 300;
  color: var(--warm); margin-bottom: 1rem;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; margin-top: 3rem;
  border-top: 1px solid rgba(200,151,58,0.3);
  padding-top: 2rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: var(--gold);
}
.stat-label {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--warm); margin-top: 0.3rem;
}

/* ── MENU ── */
.menu-section {
  padding: 8rem 4rem;
  background: linear-gradient(180deg, var(--dark) 0%, #0D0A04 100%);
}
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; margin-bottom: 1rem;
}
.section-header h2 em { font-style: italic; color: var(--gold); }
.section-header p {
  color: var(--warm); font-weight: 300;
  font-size: 1rem; max-width: 500px; margin: 0 auto;
}
.gold-line {
  width: 50px; height: 2px; background: var(--gold);
  margin: 1.5rem auto;
}
.menu-tabs {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 4rem; border: 1px solid rgba(200,151,58,0.3);
  width: fit-content; margin-left: auto; margin-right: auto;
}
.tab {
  padding: 0.8rem 2rem; cursor: pointer;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; transition: all 0.3s; border: none;
  background: transparent; color: var(--warm); font-family: 'Jost', sans-serif;
}
.tab.active { background: var(--gold); color: var(--dark); font-weight: 600; }
.tab:hover:not(.active) { color: var(--gold); }
.menu-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; max-width: 1200px; margin: 0 auto;
}
.menu-item {
  background: rgba(255,255,255,0.03);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(200,151,58,0.1);
  transition: all 0.4s; position: relative; overflow: hidden;
}
.menu-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height 0.4s;
}
.menu-item:hover { background: rgba(200,151,58,0.05); transform: translateY(-4px); }
.menu-item:hover::before { height: 100%; }
.menu-img {
  width: 100%; height: 200px; object-fit: cover;
  margin-bottom: 1.5rem;
  filter: brightness(0.9) saturate(1.1);
  transition: filter 0.4s;
}
.menu-item:hover .menu-img { filter: brightness(1) saturate(1.2); }
.menu-cat {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.menu-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; margin-bottom: 0.7rem;
}
.menu-desc {
  font-size: 0.85rem; color: var(--warm); line-height: 1.7;
  font-weight: 300; margin-bottom: 1rem;
}
.menu-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--gold); font-weight: 700;
}

/* ── EXPERIENCE ── */
.experience {
  position: relative; overflow: hidden;
  padding: 10rem 0;
}
.exp-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1800&q=80') center/cover;
  filter: brightness(0.25) saturate(0.8);
}
.exp-content {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto; text-align: center;
  padding: 0 2rem;
}
.exp-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem;
}
.exp-content h2 em { font-style: italic; color: var(--gold); }
.exp-content p {
  font-size: 1.1rem; line-height: 1.8; color: var(--warm);
  font-weight: 300; margin-bottom: 2.5rem;
}
.exp-features {
  display: flex; justify-content: center; gap: 3rem;
  margin-bottom: 3rem;
}
.exp-feat {
  text-align: center;
}
.exp-feat-icon {
  font-size: 1.8rem; margin-bottom: 0.5rem;
}
.exp-feat-label {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm);
}

/* ── GALLERY ── */
.gallery { padding: 6rem 0; background: #0D0A04; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: saturate(0.9);
}
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.2); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(200,151,58,0); transition: background 0.4s;
}
.gallery-item:hover::after { background: rgba(200,151,58,0.1); }
.gallery-header-padded {
  padding: 0 4rem 4rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 8rem 4rem;
  background: var(--dark);
}
.test-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; max-width: 1100px; margin: 0 auto;
}
.test-card {
  border: 1px solid rgba(200,151,58,0.2);
  padding: 2.5rem; position: relative;
  transition: all 0.4s;
}
.test-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.test-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; color: var(--gold); line-height: 0;
  margin-bottom: 1rem; opacity: 0.6;
}
.test-text {
  font-size: 0.95rem; line-height: 1.8; color: var(--warm);
  font-weight: 300; margin-bottom: 1.5rem; font-style: italic;
}
.test-author {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.test-role {
  font-size: 0.75rem; color: var(--warm); margin-top: 0.2rem;
}
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }

/* ── RESERVATION ── */
.reservation-section {
  background: #0D0A04; 
  padding: 6rem 4rem;
}
.reservation-container {
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 6rem; 
  align-items: center;
}
.reservation-title {
  font-family: 'Playfair Display', serif; 
  font-size: clamp(2rem, 4vw, 3rem); 
  font-weight: 900; 
  margin-bottom: 1.5rem;
}
.reservation-title em {
  color: var(--gold);
  font-style: italic;
}
.reservation-subtitle {
  color: var(--warm);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}
.res-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; margin-bottom: 1.5rem;
}
.res-info h2 em { font-style: italic; color: var(--gold); }
.res-info p { color: var(--warm); line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem; color: var(--warm); font-size: 0.9rem;
}
.contact-item a {
  color: var(--warm);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-item a:hover {
  color: var(--gold);
}
.contact-icon { color: var(--gold); font-size: 1.1rem; width: 20px; }
.res-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,151,58,0.3);
  color: var(--cream); padding: 0.9rem 1rem;
  font-family: 'Jost', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--dark); }
.form-group textarea { resize: none; height: 100px; }
.submit-btn {
  background: var(--gold); color: var(--dark);
  border: none; padding: 1.1rem;
  font-family: 'Jost', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; margin-top: 0.5rem;
}
.submit-btn:hover { background: var(--cream); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: #050300;
  padding: 4rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid rgba(200,151,58,0.2);
}
.footer-brand .logo { font-size: 2rem; display: block; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem; color: var(--warm); line-height: 1.8; font-weight: 300;
}
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a {
  text-decoration: none; color: var(--warm);
  font-size: 0.85rem; font-weight: 300;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  background: #050300; padding: 1.5rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem; color: rgba(245,239,224,0.4);
}
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,151,58,0.3);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--warm);
  font-size: 0.8rem; transition: all 0.3s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: var(--whatsapp-green);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

/* ── NAV RIGHT ── */
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* ── NAV LINK ACTIVE ── */
.nav-link.active { color: var(--gold); }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE OVERLAY ── */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(26,18,8,0.98);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-overlay nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 2.5rem; text-align: center;
}
.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700; color: var(--cream);
  text-decoration: none; letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-cta { margin-top: 1rem; }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 110px; right: 1.5rem; z-index: 100;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--dark);
  border: none; border-radius: 2px; font-size: 1.1rem;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }

/* ── FORM ERROR / SUCCESS ── */
.form-error {
  display: none; font-size: 0.75rem; color: #E05252;
  letter-spacing: 0.05em; margin-top: 2px;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #E05252; }
.form-group.error .form-error { display: block; }

.form-success {
  display: none; align-items: flex-start; gap: 1rem;
  background: rgba(200,151,58,0.12); border: 1px solid var(--gold);
  padding: 1.5rem; margin-top: 0.5rem;
}
.form-success.show { display: flex; }
.form-success > span {
  font-size: 1.5rem; color: var(--gold); margin-top: 2px;
}
.form-success strong { color: var(--cream); display: block; margin-bottom: 0.3rem; }
.form-success p { color: var(--warm); font-size: 0.9rem; font-weight: 300; margin: 0; }

/* ── MENU FILTER TRANSITION ── */
.menu-item { transition: opacity 0.25s ease, transform 0.25s ease, background 0.4s, border-color 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  .nav-btn { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-img { height: 350px; }
  .about-content { padding: 4rem 2rem; }
  .menu-section { padding: 5rem 2rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; grid-column: 1 / 3; }
  .testimonials { padding: 5rem 2rem; }
  .test-grid { grid-template-columns: 1fr; }
  .reservation-section { padding: 5rem 2rem; }
  .reservation-container { grid-template-columns: 1fr; gap: 3rem; }
  footer { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 2rem; }
  .footer-bottom { padding: 1.5rem 2rem; }
  .exp-features { flex-wrap: wrap; gap: 2rem; }
  .exp-feat { width: calc(50% - 1rem); }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .back-top { bottom: 80px; }
}

@media (max-width: 768px) {
  .about-content { padding: 3rem 1.5rem; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .menu-tabs { flex-wrap: wrap; width: auto; margin: 0 2rem 3rem; }
  .tab { flex: 1 1 calc(50% - 2px); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; }
  .gallery-grid { grid-template-rows: 220px 220px 220px 220px 220px; }
  .test-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  nav { padding: 1rem 1.2rem; }
  .hero h1 { font-size: clamp(3.5rem, 14vw, 5rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .exp-feat { width: 100%; }
  .menu-section, .testimonials, .reservation-section { padding: 4rem 1.2rem; }
  .gallery-header-padded { padding: 0 1.2rem 3rem; }
  footer { padding: 2.5rem 1.2rem; }
  .footer-bottom { padding: 1.2rem; }
  .back-top { right: 1rem; }
}
