/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0e0d0b;
  color: #f5ebe0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8956c;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f5ebe0;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: #a89f91;
  max-width: 540px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, #c8956c 0%, #a0693e 100%);
  color: #0e0d0b;
  border: 1px solid transparent;
}
.btn--gold:hover {
  background: linear-gradient(135deg, #d4a57d 0%, #b87a4f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 149, 108, 0.3);
}
.btn--ghost {
  background: transparent;
  color: #f5ebe0;
  border: 1px solid rgba(245, 235, 224, 0.3);
}
.btn--ghost:hover {
  border-color: #c8956c;
  color: #c8956c;
}
.btn--lg { padding: 16px 40px; font-size: 1rem; }
.btn--mobile { margin-top: 24px; width: 100%; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(14, 13, 11, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200, 149, 108, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c8956c, #a0693e);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0e0d0b;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #f5ebe0;
  letter-spacing: 0.01em;
}
.nav-list {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-list a {
  font-size: 0.88rem;
  font-weight: 400;
  color: #a89f91;
  transition: color 0.25s ease;
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c8956c;
  transition: width 0.3s ease;
}
.nav-list a:hover { color: #f5ebe0; }
.nav-list a:hover::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f5ebe0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(14, 13, 11, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #f5ebe0;
  transition: color 0.25s ease;
}
.mobile-menu a:hover { color: #c8956c; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0e0d0b;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14, 13, 11, 0.95) 0%,
    rgba(14, 13, 11, 0.85) 45%,
    rgba(14, 13, 11, 0.4) 70%,
    rgba(14, 13, 11, 0.2) 100%
  );
}
.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 560px; }
.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8956c;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(200, 149, 108, 0.35);
  border-radius: 100px;
  background: rgba(200, 149, 108, 0.08);
}
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #f5ebe0;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: #c8956c;
}
.hero-sub {
  font-size: 1.05rem;
  color: #a89f91;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(14, 13, 11, 0.8), transparent);
  pointer-events: none;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 235, 224, 0.4);
  z-index: 1;
}
.hero-scroll svg { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }

/* ===== ABOUT ===== */
.about { background: #0e0d0b; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border: 3px solid #1a1814;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-content { padding-top: 20px; }
.about-content p {
  color: #a89f91;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(200, 149, 108, 0.15);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #c8956c;
}
.stat-label {
  font-size: 0.82rem;
  color: #7a7267;
  letter-spacing: 0.03em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(200, 149, 108, 0.2);
  flex-shrink: 0;
}

/* ===== MENU ===== */
.menu { background: #11100d; }
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-cat {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a89f91;
  border: 1px solid rgba(168, 159, 145, 0.2);
  transition: all 0.3s ease;
}
.menu-cat:hover { border-color: rgba(200, 149, 108, 0.4); color: #f5ebe0; }
.menu-cat.active {
  background: linear-gradient(135deg, #c8956c, #a0693e);
  color: #0e0d0b;
  border-color: transparent;
  font-weight: 600;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.menu-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.menu-item:hover {
  border-color: rgba(200, 149, 108, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.menu-item-img { overflow: hidden; }
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.menu-item:hover .menu-item-img img { transform: scale(1.05); }
.menu-item-body { padding: 20px 20px 20px 0; display: flex; flex-direction: column; justify-content: center; }
.menu-item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f5ebe0;
  margin-bottom: 8px;
}
.menu-item-desc {
  font-size: 0.88rem;
  color: #7a7267;
  line-height: 1.6;
  margin-bottom: 10px;
}
.menu-item-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8956c;
  padding: 4px 10px;
  border: 1px solid rgba(200, 149, 108, 0.3);
  border-radius: 100px;
  width: fit-content;
}
.menu-cta {
  text-align: center;
  padding: 40px;
  background: rgba(200, 149, 108, 0.06);
  border: 1px solid rgba(200, 149, 108, 0.15);
  border-radius: 16px;
}
.menu-cta p { color: #a89f91; margin-bottom: 20px; font-size: 0.95rem; }
.menu-cta .btn { margin: 0 auto; }

/* ===== GALLERY ===== */
.gallery { background: #0e0d0b; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item--wide { grid-column: span 5; }
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 3; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #11100d; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(200, 149, 108, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: #c8956c;
  opacity: 0.4;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: #a89f91;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8956c, #a0693e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0e0d0b;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 500;
  font-size: 0.88rem;
  color: #f5ebe0;
}
.testimonial-location {
  font-size: 0.78rem;
  color: #7a7267;
  margin-top: 2px;
}

/* ===== VISIT ===== */
.visit { background: #0e0d0b; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit-info { padding-right: 24px; }
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 16px;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200, 149, 108, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c8956c;
}
.visit-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7267;
  margin-bottom: 4px;
}
.visit-detail-value {
  font-size: 0.95rem;
  color: #f5ebe0;
  line-height: 1.6;
}
.visit-link { color: #c8956c; transition: color 0.25s ease; }
.visit-link:hover { color: #d4a57d; }
.visit-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  border: 1px solid rgba(200, 149, 108, 0.1);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0908;
  border-top: 1px solid rgba(200, 149, 108, 0.1);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: #7a7267;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}
.footer-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8956c;
  margin-bottom: 16px;
}
.footer-links ul, .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-contact a {
  font-size: 0.9rem;
  color: #7a7267;
  transition: color 0.25s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: #c8956c; }
.footer-contact li:not(:last-child) { color: #a89f91; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(200, 149, 108, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #4a453d;
}
.footer-bottom a { color: #7a7267; transition: color 0.25s ease; }
.footer-bottom a:hover { color: #c8956c; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-float { right: 20px; bottom: -20px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: 120px 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-info { padding-right: 0; }
  .visit-map { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav, .site-header .btn--gold { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 100svh; }
  .hero-container { padding-top: 100px; }
  .hero-headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-img-float { display: none; }
  .about-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: 100px 1fr; gap: 12px; }
  .menu-item-body { padding: 12px 12px 12px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-tag { font-size: 0.65rem; }
  .menu-categories { gap: 8px; }
  .menu-cat { padding: 8px 16px; font-size: 0.8rem; }
  .menu-item { grid-template-columns: 1fr; }
  .menu-item-img { height: 180px; }
  .menu-item-body { padding: 16px 0; }
}
