:root {
  --bg: #771f35;
  --bg-soft: #5f182a;
  --bg-deep: #4c1221;
  --bg-card: #651a2d;
  --gold: #d9904a;
  --gold-light: #f0b36d;
  --cream: #f7efe4;
  --text: #f8f3ed;
  --muted: #ead2bf;
  --border: rgba(217, 144, 74, .38);
  --shadow: 0 24px 80px rgba(30, 4, 12, .45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(119, 31, 53, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 144, 74, .18);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}

.brand img {
  width: 116px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu a:hover {
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  margin: 6px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #14100d;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(217, 144, 74, .25);
}

.btn.outline {
  background: rgba(255,255,255,.05);
  color: var(--gold-light);
}

.btn.outline:hover {
  background: rgba(217, 144, 74, .10);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 22px 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(119, 31, 53, .30) 0%, rgba(119, 31, 53, .18) 45%, rgba(119, 31, 53, .12) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(217, 144, 74, .25);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  text-shadow: 0 3px 18px rgba(0,0,0,.45);
}

.eyebrow {
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -.04em;
  margin-bottom: 24px;
}

.lead {
  max-width: 680px;
  font-size: clamp(19px, 2.2vw, 28px);
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-text {
  max-width: 610px;
  color: var(--cream);
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-buttons.center {
  justify-content: center;
}

.hours-card {
  background: rgba(95, 24, 42, .72);
  border: 1px solid var(--border);
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hours-card img {
  width: 260px;
  margin: 0 auto 24px;
}

.hours-card h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--gold-light);
  text-align: center;
}

.hours-list {
  display: grid;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: var(--cream);
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(217, 144, 74, .18);
  padding-bottom: 10px;
}

.closed {
  color: var(--gold-light);
  font-weight: 700;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: .25s ease;
}

.dot.active {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

section {
  padding: 96px 22px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head h2,
.panel h2,
.booking h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-head p,
.panel p,
.booking p,
.intro-text p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 17px;
}

.intro {
  background: var(--bg-deep);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: start;
}

.intro-text {
  display: grid;
  gap: 16px;
  border-left: 1px solid var(--border);
  padding-left: 34px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.food-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(217,144,74,.2);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(.96) contrast(1.05);
}

.card-content {
  padding: 24px;
}

.card h3 {
  color: var(--gold-light);
  font-size: 28px;
  margin-bottom: 8px;
}

.card p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 15px;
}

.dark-band {
  background: var(--bg-soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.panel {
  background: rgba(76, 18, 33, .88);
  border: 1px solid rgba(217,144,74,.22);
  padding: 42px;
}

.panel p {
  margin-bottom: 24px;
}

.photo-stack {
  display: grid;
  gap: 18px;
}

.photo-stack img {
  height: 330px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(217,144,74,.22);
}

.gallery-section {
  background: var(--bg-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid rgba(217,144,74,.2);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

.booking {
  background:
    linear-gradient(rgba(119, 31, 53, .48), rgba(76, 18, 33, .66)),
    url('../img/hero/hero-2.jpeg') center/cover;
  text-align: center;
}

.booking .container {
  max-width: 860px;
}

.booking h2 {
  font-size: clamp(38px, 6vw, 68px);
}

.booking p {
  margin-bottom: 30px;
}


.event-form-wrap {
  margin-top: 42px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
  background: rgba(76, 18, 33, .88);
  border: 1px solid rgba(217,144,74,.22);
  padding: 34px;
}

.event-form-text h3 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--cream);
}

.event-form-text p {
  font-family: Arial, sans-serif;
  color: var(--muted);
  font-size: 16px;
}

.contact-form {
  display: grid;
  gap: 16px;
  font-family: Arial, sans-serif;
}

.form-row {
  display: grid;
  gap: 7px;
}

.two-cols {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(217,144,74,.35);
  background: rgba(255,255,255,.08);
  color: var(--cream);
  padding: 12px 13px;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247,239,228,.62);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(217,144,74,.13);
}

.contact-form select option {
  color: #14100d;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-message {
  min-height: 22px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.form-message.success {
  color: var(--gold-light);
}

.form-message.error {
  color: #ffb3b3;
}

.contact-form button[disabled] {
  opacity: .72;
  cursor: wait;
  transform: none;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 16px 38px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 46px rgba(0,0,0,.42);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.contacts {
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
}

.contact-box {
  border: 1px solid rgba(217,144,74,.22);
  padding: 34px;
  background: rgba(76, 18, 33, .9);
  font-family: Arial, sans-serif;
}

.contact-box h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.contact-box p,
.contact-box li {
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-box ul {
  list-style: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.map-wrap {
  margin-top: 28px;
}

iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) contrast(.9);
}

footer {
  padding: 28px 22px 110px;
  border-top: 1px solid rgba(217,144,74,.18);
  background: var(--bg-deep);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-align: center;
}

.mobile-sticky {
  display: none;
}

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

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

@media (max-width: 1100px) {
  .menu {
    gap: 14px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    order: 3;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(76,18,33,.98);
    border-bottom: 1px solid var(--border);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 16px 22px;
    border-top: 1px solid rgba(217,144,74,.12);
  }

  .hero-inner,
  .split,
  .contact-grid,
  .event-form-wrap,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-text {
    border-left: 0;
    padding-left: 0;
  }

  .hero {
    padding-top: 112px;
  }

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

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

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(4) {
    grid-column: span 1;
    height: 280px;
  }
}

@media (max-width: 680px) {
  .nav-actions .btn.outline {
    display: none;
  }

  .brand img {
    width: 96px;
  }

  .nav {
    padding: 10px 16px;
  }

  .hero {
    padding: 105px 18px 90px;
    align-items: flex-start;
  }

  .hero::after {
    inset: 10px;
  }

  .hero-buttons .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hours-card {
    padding: 26px;
  }

  .hours-card img {
    width: 210px;
  }

  section {
    padding: 72px 18px;
  }

  .panel,
  .event-form-wrap,
  .contact-box {
    padding: 28px;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .photo-stack img,
  .gallery-grid img {
    height: 240px;
  }

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


  .whatsapp-float {
    right: 16px;
    bottom: 84px;
    width: 58px;
    height: 58px;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 60;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(119,31,53,.96);
    border-top: 1px solid rgba(217,144,74,.3);
    padding: 10px;
    gap: 10px;
  }

  .mobile-sticky .btn {
    min-height: 48px;
    padding: 10px;
    font-size: 12px;
  }
}
