:root {
  --color-bg-dark: #1b120d;
  --color-bg-coffee: #2a1810;
  --color-caramel: #c9853b;
  --color-gold: #d8a85f;
  --color-cream: #fff3df;
  --color-beige: #f4dfc3;
  --color-brown: #5b341f;
  --color-text-dark: #21160f;
  --color-text-light: #fffaf2;
  --color-muted: #c9b49b;
  --radius-lg: 1.25rem;
  --radius-md: 0.85rem;
  --shadow-soft: 0 20px 35px rgba(10, 5, 2, 0.22);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-text-light);
  background:
    radial-gradient(circle at 15% 5%, rgba(201, 133, 59, 0.25), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(216, 168, 95, 0.18), transparent 32%),
    linear-gradient(140deg, #140d08, #1f140e 45%, #160f0b);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(94%, var(--max-width));
  margin: 0 auto;
}

.section-pad {
  padding: 5.5rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  font-size: 0.78rem;
  margin-bottom: 0.65rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.1;
  margin: 0 0 0.9rem;
}

h1 {
  font-size: clamp(2.15rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(18, 11, 8, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 168, 95, 0.2);
}

.nav-wrap {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(216, 168, 95, 0.3);
}

.brand-text {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
}

.nav-menu {
  justify-self: center;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-menu a {
  font-size: 0.95rem;
  color: #efd9bc;
}

.nav-menu a:hover {
  color: var(--color-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #1f130d;
  background: linear-gradient(135deg, #f3be78, #cd8a3a);
  box-shadow: 0 12px 25px rgba(201, 133, 59, 0.25);
}

.btn-secondary {
  color: var(--color-cream);
  background: rgba(244, 223, 195, 0.12);
  border: 1px solid rgba(244, 223, 195, 0.25);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: 82vh;
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(10, 6, 4, 0.9), rgba(26, 14, 8, 0.68) 46%, rgba(16, 10, 7, 0.84));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 730px;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(15, 9, 6, 0.46), rgba(15, 9, 6, 0.2));
  backdrop-filter: blur(2px);
}

.hero h1,
.hero .eyebrow,
.hero-copy {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
}

.hero h1 {
  color: #fff7ea;
}

.hero-copy {
  max-width: 62ch;
  color: #fff2dd;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.feature-grid,
.menu-grid,
.locations-grid,
.gallery-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.menu-card,
.location-card,
.events-wrap,
.booking-form,
.contact-info {
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: linear-gradient(160deg, rgba(255, 243, 223, 0.08), rgba(255, 243, 223, 0.03));
  border: 1px solid rgba(255, 243, 223, 0.16);
  box-shadow: var(--shadow-soft);
}

.feature-card h3,
.menu-card h3,
.location-card h3 {
  color: #ffe5c4;
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.text-link {
  color: var(--color-gold);
  font-weight: 700;
}

.locations-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-meta {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.location-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.gallery-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 150px;
}

.gallery-item {
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.events-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-info ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f4dfc3;
}

.social-link:hover {
  color: var(--color-gold);
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.booking-form {
  display: grid;
  gap: 0.55rem;
}

.booking-form label {
  font-size: 0.9rem;
  color: #ffe8cb;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 1px solid rgba(255, 243, 223, 0.3);
  border-radius: 0.75rem;
  background: rgba(28, 18, 13, 0.9);
  color: var(--color-text-light);
  padding: 0.8rem 0.9rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(216, 168, 95, 0.7);
  border-color: transparent;
}

.site-footer {
  border-top: 1px solid rgba(255, 243, 223, 0.15);
  padding: 1.2rem 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(130deg, #25d366, #1fa855);
  color: #f5fff8;
  padding: 0.84rem 1rem;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.wa-icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.2rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #f7dec0;
}

.lightbox {
  border: 0;
  padding: 0.75rem;
  max-width: min(96vw, 1000px);
  background: rgba(20, 14, 10, 0.98);
  border-radius: var(--radius-md);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.8);
}

.lightbox img {
  max-height: 78vh;
  object-fit: contain;
}

.lightbox-close {
  margin-bottom: 0.7rem;
  border: 1px solid rgba(244, 223, 195, 0.35);
  border-radius: 999px;
  background: rgba(244, 223, 195, 0.08);
  color: #fce8cd;
  padding: 0.45rem 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
