:root {
  --bg-beige: #f0decf;
  --accent: #5b423b;
  --muted: #7b6b66;
  --max-width: 1100px;
  --container-padding: 24px;

  /* unified dark palette */
  --dark-1: #111010;
  --dark-2: #1a1717;
  --dark-3: #201d1d;
  --dark-4: #2c2626;
  --dark-5: #3d302d;
  --gold: #c8a96e;
  --text-light: #f2e2c4;
  --text-muted: #c7b9a1;
  --text-dim: #888;
  --border-dark: #2a2a2a;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--accent);
  background: var(--dark-1);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ================================
   HEADER
================================ */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  background: transparent;
  padding: 18px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--accent);
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center
}

.main-nav a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: 0.3s;
}

.main-nav a.pr:hover {
  background: transparent !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  border-radius: 0 !important
}

.main-nav a:hover {
  background: rgba(91, 66, 59, 0.12);
  color: var(--accent)
}

.btn-pill {
  background: var(--accent);
  color: white;
  padding: 8px 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background .3s ease, box-shadow .25s ease;
}

.btn-pill:hover {
  background: rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18)
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--accent);
}

/* ================================
   HERO
================================ */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-beige);
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(240, 222, 207, 0.96) 0%, rgba(240, 222, 207, 0.5) 35%, rgba(240, 222, 207, 0) 60%);
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr .6fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
}

.hero-text h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1.02;
  color: var(--accent);
  font-weight: 600;
}

.lead {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 520px
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center
}

.btn {
  text-decoration: none;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent)
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: inset 0 0 12px rgba(91, 66, 59, 0.5)
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(91, 66, 59, 0.18)
}

.btn-ghost:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: inset 0 0 12px rgba(91, 66, 59, 0.5)
}

.hero-image-placeholder {
  width: 100%;
  min-height: 360px
}

/* ================================
   FEATURE SECTION
================================ */
.feature-section {
  background: var(--dark-4);
  padding: 80px 0;
  color: #eee
}

.feature-grid {
  display: grid;
  gap: 60px
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px
}

.feature-img {
  width: 100%;
  border-radius: 12px
}

.feature-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0 0 12px;
  color: #fff
}

.feature-text p {
  color: #c6bcbc;
  line-height: 1.6;
  margin-bottom: 18px
}

.small-btn {
  border: 1px solid #776b66;
  padding: 10px 18px;
  border-radius: 6px;
  color: #eee;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: 0.2s ease;
}

.small-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: white
}

/* ================================
   SOCIAL BAR
================================ */
.social-bar {
  background: var(--dark-5);
  padding: 24px 0
}

.social-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #eee
}

.social-item {
  display: flex;
  align-items: center;
  gap: 14px
}

.social-item a {
  color: #d7c0a5;
  font-size: 36px;
  transition: 0.3s ease
}

.social-item a:hover {
  color: var(--gold)
}

/* ================================
   GALLERY STRIP
================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.gallery-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover
}

/* ================================
   MENU SECTION
================================ */
.menu-section {
  padding: 80px 0;
  background: var(--dark-2);
  text-align: center
}

.menu-subtitle {
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px
}

.menu-section .section-title {
  color: var(--text-light);
  margin-bottom: 0
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 40px;
  flex-wrap: wrap
}

.tab-btn {
  background: transparent;
  border: 1px solid #333;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0e0e0e
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--dark-4);
  border: 1px solid var(--dark-4);
  border-radius: 4px;
  overflow: hidden;
}

.menu-item {
  background: var(--dark-3);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #252020;
  transition: background 0.2s;
}

.menu-item:hover {
  background: var(--dark-4)
}

.menu-item-left h4 {
  color: var(--text-light);
  font-size: 15px;
  margin: 0 0 4px
}

.menu-item-left p {
  color: var(--text-dim);
  font-size: 12px;
  margin: 0
}

.menu-price {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap
}

.menu-badge {
  background: rgba(200, 169, 110, 0.15);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 400;
}

/* ================================
   LOCATIONS SECTION
================================ */
.locations {
  background: var(--dark-2);
  padding: 80px 0;
  color: var(--text-light);
  text-align: center
}

.section-title {
  font-size: 48px;
  font-family: "Playfair Display", serif;
  margin-bottom: 60px;
  color: var(--text-light)
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.location-box {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 0 0 24px;
  overflow: hidden;
}

.location-box h3 {
  font-size: 20px;
  margin: 16px 0 6px;
  color: var(--text-light)
}

.underline {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 8px auto 14px
}

.location-box p {
  margin: 4px 0;
  color: var(--text-muted);
  font-size: 14px
}

/* MAP EMBED */
.map-embed {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 0
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.05)
}

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
  background: var(--dark-3);
  color: var(--text-light);
  padding: 80px 5%
}

.contact-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

.contact-subtitle {
  margin-bottom: 40px;
  color: var(--text-muted)
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap
}

/* Form */
.contact-form {
  flex: 1;
  min-width: 280px
}

.form-group {
  margin-bottom: 20px
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text-muted)
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  background: var(--dark-2);
  color: var(--text-light);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold)
}

.contact-form textarea {
  height: 130px;
  resize: vertical
}

.contact-btn {
  background: var(--gold);
  color: var(--dark-1);
  padding: 13px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}

.contact-btn:hover {
  background: #b8994f;
  transform: translateY(-1px)
}

/* Right info panel */
.contact-info {
  flex: 0.9;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0
}

/* Action buttons */
.contact-action-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.2s, transform 0.15s;
}

.action-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px)
}

.call-btn {
  background: var(--gold);
  color: var(--dark-1)
}

.whatsapp-btn {
  background: #25d366;
  color: #fff
}

/* Contact details */
.contact-details {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.contact-details p i {
  color: var(--gold);
  width: 16px;
  text-align: center
}

/* Social row */
.contact-socials {
  display: flex;
  gap: 14px;
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
}

.contact-socials a {
  color: #555;
  font-size: 24px;
  transition: color 0.2s
}

.contact-socials a:hover {
  color: var(--gold)
}

/* ================================
   FOOTER
================================ */
.site-footer {
  background: var(--dark-1);
  padding: 20px 0 30px;
  color: #d7c5a4;
  font-size: 14px;
}

.site-footer hr {
  width: 90%;
  margin: 0 auto 20px;
  border: 0;
  border-top: 1px solid #2a2626;
}

.footer-bottom {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom span {
  font-weight: 600;
  color: var(--gold)
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px auto
}

.footer-links a {
  color: #b3a38e;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease
}

.footer-links a:hover {
  color: var(--text-light)
}

/* ================================
   MOBILE MENU
================================ */
@media(max-width:768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 25px;
    gap: 25px;
    transition: right 0.35s ease;
    box-shadow: -3px 0 18px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
  }

  .main-nav a {
    color: var(--accent);
    font-size: 20px;
    display: block
  }

  .main-nav.open {
    right: 0
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 10000;
    color: var(--accent);
    font-size: 32px;
  }

  .site-header {
    z-index: 10000
  }
}

/* ================================
   RESPONSIVE
================================ */
@media(max-width:980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left
  }

  .hero-text h1 {
    font-size: 44px
  }

  .hero-image-placeholder {
    display: none
  }

  .hero {
    background-position: center top
  }

  .feature-card {
    grid-template-columns: 1fr;
    text-align: center
  }

  .social-inner {
    flex-direction: column;
    gap: 20px
  }

  .gallery-strip img {
    height: 200px
  }

  .locations-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto
  }

  .contact-container {
    flex-direction: column
  }

  .contact-info {
    min-width: 100%
  }
}

@media(max-width:520px) {
  .hero-text h1 {
    font-size: 32px
  }

  .container {
    padding: 0 16px
  }

  .btn-pill {
    padding: 6px 10px;
    font-size: 13px
  }

  .section-title {
    font-size: 34px
  }

  .contact-section {
    padding: 60px 5%
  }

  .gallery-strip {
    grid-template-columns: 1fr
  }

  .gallery-strip img {
    height: 220px
  }

  .menu-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }
}
