:root {
  --black: #0d0d0d;
  --forest: #1a2e1f;
  --forest-mid: #243d2a;
  --forest-light: #2d5a3d;
  --gold: #c9a84c;
  --gold-soft: #e8d89a;
  --gold-bright: #e8c96a;
  --cream: #e8dcc8;
  --ivory: #f5f0e8;
  --muted-stone: #9a8f7e;
  --font-serif: "Playfair Display", Georgia, Cambria, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ivory);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 100px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, gap 0.3s ease;
}

a:hover {
  color: var(--gold-soft);
}

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

.muted {
  color: rgba(232, 220, 200, 0.7);
}

.section {
  padding: 5rem 0;
}

@media (min-width: 576px) {
  .section {
    padding: 7rem 0;
  }
}

.section-eyebrow {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-lead {
  color: rgba(232, 220, 200, 0.7);
  max-width: 36rem;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

/* —— Buttons —— */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 2px;
  padding: 0.9rem 2rem;
  line-height: 1.25;
  transition: all 0.3s ease;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--black);
}

.btn-gold:hover::before {
  left: 100%;
}

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

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn-outline-forest {
  background: transparent;
  border: 2px solid var(--forest);
  color: var(--ivory);
}

.btn-outline-forest:hover,
.btn-outline-forest:focus {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--ivory);
}

.btn-outline-light-soft {
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--ivory);
}

.btn-outline-light-soft:hover,
.btn-outline-light-soft:focus {
  background: rgba(245, 240, 232, 0.1);
  border-color: rgba(245, 240, 232, 0.5);
  color: var(--ivory);
}

.btn-forest {
  background: var(--forest);
  border: 1px solid var(--forest);
  color: var(--ivory);
}

.btn-forest:hover,
.btn-forest:focus {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  color: var(--ivory);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 500;
}

.link-arrow:hover {
  gap: 1rem;
  color: var(--gold-soft);
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.site-header.scrolled .main-nav {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.announcement-bar {
  background: var(--forest);
  color: var(--gold);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.announcement-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.announcement-track span {
  margin: 0 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.main-nav {
  background: transparent;
  padding: 0;
  min-height: 64px;
}

.main-nav .container-xl {
  display: flex;
  align-items: center;
  min-height: 64px;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  padding: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

@media (min-width: 576px) {
  .brand-name {
    font-size: 1.875rem;
  }
}

.brand-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-stone);
  font-weight: 300;
}

.main-nav .nav-link {
  position: relative;
  color: var(--ivory) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0 !important;
  margin: 0 0.85rem;
}

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

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--gold) !important;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  color: var(--ivory);
  font-size: 1.75rem;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(13, 13, 13, 0.98);
    margin: 0 -0.75rem;
    padding: 1rem 1.25rem 1.5rem;
  }

  .main-nav .nav-link {
    margin: 0;
    padding: 0.75rem 0 !important;
  }
}

/* —— Hero —— */
.hero-section {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.5) 50%, rgba(13, 13, 13, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  padding: 2rem 1rem 4rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--gold);
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1025px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-lead {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(232, 220, 200, 0.9);
  max-width: 36rem;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

@media (min-width: 576px) {
  .hero-lead {
    font-size: 1.25rem;
  }
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.8);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  animation: scrollIndicator 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes scrollIndicator {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* —— Values —— */
.values-strip {
  background: var(--forest);
  padding: 2rem 0;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.value-item.is-visible {
  opacity: 1;
  transform: none;
}

.value-item i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--ivory);
  margin: 0 0 0.15rem;
}

.value-item p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(232, 220, 200, 0.7);
}

/* —— Quote —— */
.quote-section {
  background: var(--forest);
  padding: 5rem 0;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--gold);
  line-height: 1.45;
  max-width: 48rem;
  margin: 0 auto;
}

/* —— Dishes —— */
.dishes-section {
  background: var(--black);
}

.menu-card {
  background: var(--forest);
  border-radius: 2px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(24px);
}

.menu-card.is-visible {
  opacity: 1;
  transform: none;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201, 168, 76, 0.15);
}

.img-zoom {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.img-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black), transparent, transparent);
  pointer-events: none;
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ivory);
  margin: 0;
  transition: color 0.25s ease;
}

.menu-card:hover h3 {
  color: var(--gold);
}

.menu-card-body .price {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.menu-card-body p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(232, 220, 200, 0.7);
}

/* —— Video —— */
.video-section {
  background: var(--black);
}

.experience-wrap {
  max-width: 64rem;
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  overflow: hidden;
  background: var(--forest);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* —— Reviews —— */
.reviews-section {
  background: var(--forest);
}

.review-card {
  background: var(--black);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid var(--black);
  height: 100%;
  transition: border-color 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
}

.review-card.is-visible {
  opacity: 1;
  transform: none;
}

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

.stars {
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.review-card > p {
  font-style: italic;
  color: rgba(232, 220, 200, 0.8);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-meta .name {
  color: var(--ivory);
  font-weight: 500;
}

.review-meta .source {
  color: rgba(201, 168, 76, 0.6);
  font-size: 0.875rem;
}

/* —— Food culture —— */
.food-culture-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 576px) {
  .food-culture-section {
    padding: 7rem 0;
  }
}

.culture-bg {
  position: absolute;
  inset: 0;
}

.culture-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.culture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black), rgba(13, 13, 13, 0.85), var(--black));
}

.culture-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.culture-content p {
  color: rgba(232, 220, 200, 0.8);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.culture-content .section-title {
  margin-bottom: 2rem;
}

/* —— Story —— */
.story-section {
  background: var(--forest);
}

.story-image {
  border-radius: 2px;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .story-image img {
    height: 500px;
  }
}

.story-copy {
  color: rgba(232, 220, 200, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* —— Hours —— */
.hours-section {
  background: var(--black);
}

.hours-wrap {
  max-width: 64rem;
}

.hours-list {
  margin-top: 0.5rem;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(26, 46, 31, 0.5);
  color: var(--ivory);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-time {
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.find-us-card {
  background: var(--forest);
  padding: 2rem;
  border-radius: 2px;
}

.find-us-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.find-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.find-line i {
  color: var(--gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.find-line a {
  color: var(--ivory);
}

.find-line a:hover {
  color: var(--gold);
}

/* —— CTA banner —— */
.cta-banner {
  background: var(--forest);
  padding: 4rem 0;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(232, 220, 200, 0.7);
  margin: 0;
}

/* —— Footer —— */
.site-footer {
  background: var(--forest);
}

.footer-gold-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-about {
  color: rgba(232, 220, 200, 0.8);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.site-footer address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--cream);
}

.site-footer address a {
  color: var(--gold);
}

.site-footer address a:hover {
  text-decoration: underline;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-social .ta-badge {
  font-size: 0.7rem;
  font-weight: 700;
}

.site-footer h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.75rem;
}

.site-footer ul a {
  color: rgba(232, 220, 200, 0.7);
  font-size: 0.875rem;
}

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

.footer-hours {
  font-size: 0.875rem;
  color: rgba(232, 220, 200, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.walk-ins {
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(232, 220, 200, 0.4);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(13, 13, 13, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(232, 220, 200, 0.5);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* —— WhatsApp —— */
.whatsapp-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.4);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
  color: var(--forest);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.55);
  transform: translateY(-2px);
}

/* —— Motion —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 575.98px) {
  body {
    padding-top: 96px;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}
