:root {
  --olive: #1f2a24;
  --gold: #c8a45a;
  --cream: #f6f2ea;
  --charcoal: #1a1a1a;
  --muted: #ded5c6;
  --surface: #faf8f3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Lato, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #6b6557;
  margin-bottom: 1rem;
}

.hero {
  min-height: 100vh;
  color: var(--cream);
  position: relative;
  background-image: linear-gradient(rgba(15, 20, 17, 0.45), rgba(15, 20, 17, 0.72)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  overflow: hidden;
  margin-left: 0.8rem;
}

.lang-switch a {
  text-decoration: none;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.34rem 0.58rem;
  text-shadow: none;
}

.lang-switch a.active {
  background: rgba(255, 255, 255, 0.92);
  color: #1f2a24;
}

.hero-content {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: calc(100vh - 86px);
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}

.hero p {
  font-size: clamp(1rem, 2.3vw, 1.25rem);
}

.hero .eyebrow {
  color: rgba(246, 242, 234, 0.96);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #1f1b12;
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246, 242, 234, 0.8);
}

.trust {
  opacity: 0.9;
}

.floating-reserve {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: var(--gold);
  color: #2e2414;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  z-index: 25;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.about {
  background: linear-gradient(180deg, var(--surface), var(--cream));
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.about-card {
  background: #fff;
  border: 1px solid var(--muted);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 16px 30px rgba(31, 42, 36, 0.08);
}

.about-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dish-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--muted);
  box-shadow: 0 8px 16px rgba(26, 26, 26, 0.06);
}

.dish-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.dish-card div {
  padding: 1rem;
}

.features {
  background: var(--olive);
  color: var(--cream);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid article {
  border: 1px solid rgba(246, 242, 234, 0.25);
  border-radius: 16px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
}

.reviews {
  background: #f1ece3;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

blockquote {
  margin: 0;
  padding: 1.2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--muted);
}

.menu-box {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--muted);
  padding: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.instagram-note {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--muted);
  padding-top: 0.8rem;
}

.instagram-note a {
  color: #5f4c2e;
  font-weight: 700;
  text-decoration: none;
}

.reserve {
  background: linear-gradient(140deg, #f6f2ea 0%, #efe5d2 100%);
}

.reserve-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.phone a {
  color: #5c4420;
  font-weight: 700;
}

.booking-form {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--muted);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 0.35rem;
}

.booking-form input {
  padding: 0.65rem;
  border: 1px solid #ccc4b5;
  border-radius: 9px;
  font: inherit;
}

.date-field {
  position: relative;
}

.date-field > input[name="date"] {
  width: 100%;
  padding-right: 2.6rem;
}

.date-native-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.date-open-btn {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  font-size: 0;
}

.date-open-btn::before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

.booking-form .btn {
  grid-column: 1 / -1;
  margin-top: 0.2rem;
}

.booking-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 14px;
}

.footer {
  background: #151914;
  color: var(--cream);
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer a {
  text-decoration: none;
  color: var(--muted);
}

.popup-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.popup-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.popup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 14, 0.58);
  backdrop-filter: blur(3px);
}

.popup-modal__card {
  position: relative;
  width: min(560px, 90vw);
  background: linear-gradient(160deg, #fefcf8 0%, #f4ecde 100%);
  border: 1px solid #d8c9ab;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(16, 21, 18, 0.32);
  padding: 1.35rem;
}

.popup-modal__eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: #6f5a38;
}

.popup-modal__message {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #2a2419;
}

.popup-modal__button {
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .container {
    width: min(1120px, 94vw);
  }

  .hero-content {
    min-height: calc(100vh - 74px);
  }

  .dish-grid,
  .review-grid,
  .feature-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col,
  .reserve-box {
    grid-template-columns: 1fr;
  }

  .menu-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1120px, 95vw);
  }

  .logo {
    font-size: 1.15rem;
  }

  .nav ul {
    display: none;
  }

  .lang-switch {
    margin-left: 0;
  }

  .section {
    padding: 3.2rem 0;
  }

  .dish-grid,
  .review-grid,
  .feature-grid,
  .footer-grid,
  .gallery-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    min-height: calc(92vh - 68px);
    max-width: 92vw;
    padding: 0.8rem 0 2rem;
  }

  .hero .eyebrow {
    letter-spacing: 0.08em;
    font-size: 0.74rem;
    margin-bottom: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    gap: 0.7rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    padding: 0.88rem 1rem;
  }

  .floating-reserve {
    right: 0.75rem;
    left: auto;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    text-align: left;
    padding: 0.8rem 1rem;
  }

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

  .gallery-grid img {
    height: 200px;
  }

  .instagram-note {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }

  .booking-form {
    padding: 0.9rem;
  }

  .booking-form label {
    font-size: 0.95rem;
  }

  .booking-form input {
    min-height: 44px;
  }

  .popup-modal__card {
    width: min(560px, 93vw);
    border-radius: 16px;
    padding: 1rem;
  }

  .map-wrap iframe {
    min-height: 270px;
  }
}
