/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #C41E3A;
  --cream:  #F5F0E8;
  --dark:   #1A1A1A;
  --brown:  #2C1810;
  --gold:   #C9A96E;
  --gray:   #6B6B6B;
  --light:  #FAFAF7;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; }
em { font-style: normal; }

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

.label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.28s ease;
}

.btn-red   { background: var(--red);   color: #fff; border-color: var(--red); }
.btn-red:hover { background: #a01830; border-color: #a01830; }

.btn-cream { background: var(--cream); color: var(--dark); border-color: var(--cream); }
.btn-cream:hover { background: transparent; color: var(--cream); border-color: var(--cream); }

.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(245,240,232,0.7); }
.btn-ghost:hover { background: var(--cream); color: var(--dark); border-color: var(--cream); }

.btn-full  { width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  padding: 0 48px;
  height: 72px;
  gap: 32px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Oswald', sans-serif;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 9px 20px;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: #fff; color: var(--dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  display: block;
  transition: all 0.3s;
}

.nav-drawer {
  display: none;
  background: var(--dark);
  padding: 24px 48px 32px;
}
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; }
.nav-drawer li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-drawer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.nav-drawer .nav-cta { display: inline-block; margin-top: 16px; }

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

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.3) 0%,
    rgba(26,26,26,0.55) 60%,
    rgba(26,26,26,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 860px;
  animation: fadeUp 1.1s ease 0.3s both;
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 22px;
}
.hero-content h1 em { color: var(--gold); }

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
  animation: fadeUp 1s ease 1.2s both;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(0.7); }
}

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-bar.marquee-dark { background: var(--dark); }

.marquee-track {
  display: inline-block;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
.marquee-dark .marquee-track span { color: var(--gold); }

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

/* ===== FEATURE STRIP ===== */
.feature-strip {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 48px;
  gap: 0;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 60px;
  flex: 1;
  min-width: 220px;
  justify-content: center;
}

.f-icon { font-size: 2rem; line-height: 1; }

.feature-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.4;
}

.divider {
  width: 1px;
  height: 56px;
  background: rgba(26,26,26,0.12);
}

/* ===== MENU SECTION ===== */
.menu-section {
  background: var(--light);
  padding: 100px 0 0;
}

.menu-header {
  text-align: center;
  padding: 0 24px 72px;
}
.menu-header h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin-top: 4px;
}

.menu-item-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  overflow: hidden;
}
.menu-item-full.reverse { direction: rtl; }
.menu-item-full.reverse > * { direction: ltr; }

.mi-img {
  overflow: hidden;
}
.mi-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.menu-item-full:hover .mi-img img { transform: scale(1.04); }

.mi-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 80px;
  background: var(--light);
}

.mi-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
}

.mi-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.1;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

.mi-text p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 420px;
}

.mi-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: var(--red);
}

/* ===== STORY SECTION ===== */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.story-img-wrap {
  overflow: hidden;
}
.story-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.story-text-wrap {
  background: var(--cream);
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-text-wrap h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 28px;
}
.story-text-wrap h2 em { color: var(--red); }

.story-lead {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-text-wrap p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 18px;
}

.story-text-wrap .btn-red { margin-top: 10px; }

/* ===== PRESS ===== */
.press-section {
  background: var(--light);
  padding: 72px 48px;
  border-top: 1px solid rgba(26,26,26,0.07);
  border-bottom: 1px solid rgba(26,26,26,0.07);
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.press-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(26,26,26,0.3);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.press-name:hover { color: var(--dark); cursor: default; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--dark);
  padding: 100px 48px;
}

.testimonials-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.testimonials-section .label { color: var(--gold); }

.testimonials-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 60px;
}

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

.t-card {
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.t-card.featured {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-16px);
}

.t-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.t-card.featured .t-stars { color: rgba(255,255,255,0.7); }

.t-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.t-card.featured blockquote { color: rgba(255,255,255,0.95); }

.t-card cite {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.t-card.featured cite { color: rgba(255,255,255,0.6); }

/* ===== FULL IMAGE BREAK ===== */
.full-img-break {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.full-img-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.full-img-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.55);
}
.full-img-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.full-img-text h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.full-img-text h2 em { color: var(--gold); }

/* ===== VISIT & HOURS ===== */
.visit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.visit-text {
  background: var(--cream);
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.15;
}

.visit-text > p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hours-list { margin-bottom: 36px; }

.h-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26,26,26,0.1);
  font-size: 0.9rem;
}
.h-row span:first-child { font-weight: 700; color: var(--dark); }
.h-row span:last-child  { color: var(--gray); }

.visit-address p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 6px;
}

.visit-map-placeholder {
  position: relative;
  overflow: hidden;
}
.visit-map-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.map-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: #fff;
  padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.map-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.map-badge span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== RESERVATION ===== */
.reservation-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  background: var(--dark);
  padding: 0;
}

.res-left {
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.res-left h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}
.res-left h2 em { color: var(--gold); }

.res-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}
.res-left strong { color: #fff; }

.res-note {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 8px !important;
}

.res-form {
  background: var(--cream);
  padding: 72px 64px;
}

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

.res-form input,
.res-form select,
.res-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(26,26,26,0.15);
  background: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  border-radius: 0;
  transition: border-color 0.2s;
}
.res-form input:focus,
.res-form select:focus,
.res-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.res-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 14px;
}

.res-form .btn-full { margin-top: 8px; padding: 18px; font-size: 0.85rem; }

/* ===== FOOTER ===== */
.footer {
  background: #111;
}

.footer-top {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }

.footer-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  line-height: 1.6;
}

.social-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-row a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.social-row a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  padding: 22px 24px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .mi-text { padding: 60px 48px; }
  .story-text-wrap, .visit-text, .res-left { padding: 72px 48px; }
  .res-form { padding: 72px 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .logo { margin: 0 auto 0 0; }

  .menu-item-full { grid-template-columns: 1fr; min-height: auto; }
  .menu-item-full.reverse { direction: ltr; }
  .mi-img { height: 300px; }
  .mi-text { padding: 48px 36px; }

  .story-section { grid-template-columns: 1fr; }
  .story-img-wrap { height: 360px; }
  .story-text-wrap { padding: 60px 36px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .t-card.featured { transform: none; }

  .visit-section { grid-template-columns: 1fr; }
  .visit-map-placeholder { height: 320px; }
  .visit-text { padding: 60px 36px; }

  .reservation-section { grid-template-columns: 1fr; }
  .res-left { padding: 60px 36px; }
  .res-form { padding: 48px 36px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; padding: 60px 36px 48px; }
  .feature-strip { padding: 40px 24px; gap: 24px; }
  .feature-item { padding: 0 24px; }
  .divider { display: none; }
}

@media (max-width: 560px) {
  .nav-inner { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px; }
  .hero-content h1 { font-size: 3rem; }
  .press-logos { gap: 24px; }
  .testimonials-section { padding: 72px 24px; }
}
