:root {
  --color-bg: #0b0e0f;
  --color-bg-warm: #111614;
  --color-cream: #f0ede6;
  --color-cream-soft: #ddd8ce;
  --color-gold: #d4883e;
  --color-gold-light: #e09a50;
  --color-terracotta: #c45d3e;
  --color-olive: #7a8c5a;
  --color-olive-dark: #3d4a2a;
  --color-text: #f0ede6;
  --color-text-muted: #9a9488;
  --color-divider: rgba(212, 136, 62, 0.2);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==================== NOISE OVERLAY ==================== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ==================== NAVIGATION ==================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    background 0.4s ease,
    padding 0.4s ease;
}

nav.scrolled {
  background: rgba(11, 14, 15, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--color-divider);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-cream-soft);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-gold);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-reserve {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.6rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-reserve:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  margin: 5px 0;
  transition: all 0.3s;
}

.setup-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 15, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 3000;
  overflow-y: auto;
}

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

.setup-panel {
  width: min(760px, 100%);
  background: rgba(18, 22, 24, 0.98);
  border: 1px solid rgba(212, 136, 62, 0.18);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.setup-header h2 {
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.setup-header p {
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

#setupForm label {
  display: block;
  color: var(--color-cream-soft);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

#setupForm input,
#setupForm textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  padding: 0.95rem 1rem;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

#setupForm textarea {
  resize: vertical;
}

.setup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.setup-panel .btn-primary,
.setup-panel .btn-secondary {
  width: auto;
}

#openSetupLink {
  color: var(--color-cream-soft);
  text-decoration: underline;
}

#openSetupLink:hover {
  color: var(--color-gold);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(212, 136, 62, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(122, 140, 90, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(196, 93, 62, 0.05) 0%,
      transparent 70%
    ),
    var(--color-bg);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 25% 25%,
      rgba(212, 136, 62, 0.03) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(212, 136, 62, 0.03) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.btn-primary {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-bg);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-gold);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-gold);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-cream);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(240, 237, 230, 0.3);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--color-cream);
  background: rgba(240, 237, 230, 0.05);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ==================== SECTION COMMONS ==================== */
section {
  padding: 8rem 3rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-cream);
  margin-bottom: 2rem;
}

.section-title em {
  font-style: italic;
  color: var(--color-gold);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 3rem 0;
}

/* ==================== ABOUT ==================== */
.about {
  background: var(--color-bg-warm);
  position: relative;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(
    135deg,
    rgba(212, 136, 62, 0.1),
    rgba(122, 140, 90, 0.1)
  );
  border: 1px solid var(--color-divider);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 136, 62, 0.15);
}

.about-image-placeholder {
  font-family: var(--font-display);
  font-size: 8rem;
  opacity: 0.15;
  color: var(--color-gold);
}

.about-text p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.85rem;
  color: var(--color-cream-soft);
  font-weight: 500;
}

/* ==================== MENU ==================== */
.menu {
  background: var(--color-bg);
  position: relative;
}

.menu-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.menu-description {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== MENU TABS ==================== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 3rem 0 0;
  border-bottom: 1px solid var(--color-divider);
  flex-wrap: wrap;
}

.menu-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: pointer;
  transition:
    color 0.3s,
    border-color 0.3s;
  margin-bottom: -1px;
}

.menu-tab:hover {
  color: var(--color-cream);
}

.menu-tab.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.menu-panel {
  display: none;
  padding-top: 3rem;
}

.menu-panel.active {
  display: block;
}

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

.menu-item {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--color-divider);
  transition: background 0.3s;
}

.menu-item:hover {
  background: rgba(212, 136, 62, 0.03);
}

.menu-item:nth-child(odd) {
  border-right: 1px solid var(--color-divider);
}

.menu-item--featured .menu-item-name {
  color: var(--color-gold);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-cream);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-item-qty {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-style: normal;
  background: rgba(154, 148, 136, 0.08);
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--color-divider);
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-desc {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.menu-note {
  margin-top: 3rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(154, 148, 136, 0.45);
  line-height: 1.8;
  text-align: center;
}

/* ==================== REVIEWS ==================== */
.reviews {
  background: var(--color-bg-warm);
  overflow: hidden;
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.star {
  color: var(--color-gold);
  font-size: 1.3rem;
}

.star.half {
  opacity: 0.5;
}

.reviews-score {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 4rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: rgba(240, 237, 230, 0.02);
  border: 1px solid var(--color-divider);
  padding: 2.5rem;
  text-align: left;
  transition:
    transform 0.3s,
    border-color 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 136, 62, 0.4);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.2rem;
}

.review-stars span {
  color: var(--color-gold);
  font-size: 0.85rem;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-cream-soft);
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.review-source {
  font-size: 0.7rem;
  color: rgba(154, 148, 136, 0.6);
  margin-top: 0.25rem;
}

/* ==================== LOCATION ==================== */
.location {
  background: var(--color-bg);
}

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.location-map {
  aspect-ratio: 1;
  background: var(--color-bg-warm);
  border: 1px solid var(--color-divider);
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter 0.5s;
}

.location-map:hover iframe {
  filter: grayscale(0.3) brightness(0.8) contrast(1.05);
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-detail {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-divider);
}

.location-detail:first-of-type {
  padding-top: 0;
}

.location-detail:last-of-type {
  border-bottom: none;
}

.location-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.location-detail-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-cream);
  line-height: 1.5;
}

.location-detail-value a {
  color: var(--color-cream);
  text-decoration: none;
  transition: color 0.3s;
}

.location-detail-value a:hover {
  color: var(--color-gold);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  padding: 6rem 3rem;
  text-align: center;
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(212, 136, 62, 0.08) 0%,
      transparent 60%
    ),
    var(--color-bg-warm);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.cta-banner .section-title {
  margin-bottom: 1rem;
}

.cta-banner p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

/* ==================== FOOTER ==================== */
footer {
  padding: 4rem 3rem 2rem;
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 136, 62, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(154, 148, 136, 0.5);
}

.footer-bottom a {
  color: rgba(154, 148, 136, 0.5);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-frame {
    max-height: 400px;
  }

  .location-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-item:nth-child(odd) {
    border-right: none;
  }
  .menu-tab {
    padding: 0.8rem 1rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 1.5rem;
  }

  nav {
    padding: 1.2rem 1.5rem;
  }

  .nav-links,
  .nav-reserve {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .location-map {
    aspect-ratio: 16/10;
  }
}
