@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --cream: #f7efe4;
  --cream-deep: #efe0cf;
  --emerald: #0f6b52;
  --emerald-soft: #d8efe5;
  --terra: #c9654b;
  --terra-dark: #9b4b35;
  --text: #2a1e1a;
  --muted: #6b5a52;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 107, 82, 0.2);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf6ef 0%, var(--cream) 55%, #efe0cf 100%);
  line-height: 1.6;
}

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

.section {
  padding: 92px 8vw;
}

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

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  color: var(--emerald);
}

.section-head p {
  color: var(--muted);
  margin-top: 10px;
}

.hero {
  padding: 36px 8vw 80px;
  background: linear-gradient(120deg, var(--cream) 0%, #f3e5d6 45%, #e9d3c4 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  background: var(--terra);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
  margin: 14px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--terra);
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}

.btn {
  background: var(--terra);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: inline-block;
}

.phone {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--emerald);
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-badges span {
  border: 1px solid rgba(15, 107, 82, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 107, 82, 0.25);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.hero-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(15, 107, 82, 0.85);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.menu-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.menu-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 107, 82, 0.12);
  box-shadow: var(--shadow);
}

.menu-photo {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.menu-body {
  padding: 20px;
}

.menu-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: var(--emerald);
}

.menu-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin: 8px 0;
}

.menu-body p {
  color: var(--muted);
  margin-bottom: 16px;
}

.price {
  color: var(--emerald);
  font-size: 1.2rem;
}

.m1,
.m4,
.m7,
.m10 {
  background-image: url("./assets/photo-1.svg");
}

.m2,
.m5,
.m8 {
  background-image: url("./assets/photo-2.svg");
}

.m3,
.m6,
.m9 {
  background-image: url("./assets/photo-3.svg");
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.gallery-item {
  min-height: 130px;
  border-radius: 16px;
  background: var(--cream);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-weight: 600;
  border: 1px solid rgba(15, 107, 82, 0.25);
  text-shadow: 0 2px 12px rgba(15, 107, 82, 0.2);
}

.g2,
.g5,
.g8,
.g11 {
  background-image: url("./assets/photo-2.svg");
}

.g3,
.g6,
.g9,
.g12 {
  background-image: url("./assets/photo-3.svg");
}

.g4,
.g7,
.g10 {
  background-image: url("./assets/photo-1.svg");
}

.g1 {
  background-image: url("./assets/photo-2.svg");
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 107, 82, 0.25);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 20;
}

.lightbox:target {
  display: flex;
}

.lightbox-inner {
  background: var(--cream);
  padding: 20px;
  border-radius: 18px;
  max-width: 720px;
  width: 100%;
  box-shadow: var(--shadow);
}

.lightbox-photo {
  height: 420px;
  border-radius: 14px;
  background: linear-gradient(130deg, #f7efe4, #0f6b52);
  border: 1px solid rgba(15, 107, 82, 0.3);
}

.lightbox-close {
  display: inline-block;
  margin-top: 14px;
  color: var(--emerald);
  font-weight: 600;
}

.lb2,
.lb5,
.lb8,
.lb11 {
  background: linear-gradient(130deg, #f4e4d4, #0f6b52);
}

.lb3,
.lb6,
.lb9,
.lb12 {
  background: linear-gradient(130deg, #f6eadc, #c9654b);
}

.lb4,
.lb7,
.lb10 {
  background: linear-gradient(130deg, #f3e1cf, #0d5c46);
}

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

.why-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(15, 107, 82, 0.15);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.why-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(15, 107, 82, 0.12);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: start;
}

.review-card > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-card p {
  margin: 0;
}

.review-card span {
  display: block;
}

.review-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(130deg, #c9654b, #0f6b52);
}

.stars {
  color: var(--emerald);
  letter-spacing: 0.12em;
}

.contacts-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(15, 107, 82, 0.15);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 6px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.map-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 16px;
}

.booking-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.booking-form input,
.booking-form select {
  border: 1px solid rgba(15, 107, 82, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  background: var(--white);
}

.booking-form .full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 32px 8vw 40px;
  color: var(--muted);
}

.floating-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}

.chat-btn {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f6b52;
  box-shadow: var(--shadow);
}

.chat-btn.whatsapp {
  background: #25d366;
}

.chat-btn.telegram {
  background: #29b6f6;
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(201, 101, 75, 0.15);
  display: grid;
  place-items: center;
  color: var(--terra);
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .section {
    padding: 84px 7vw;
  }

  .hero {
    padding: 32px 7vw 72px;
  }

  .hero-grid {
    gap: 32px;
  }

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

  .gallery-item {
    min-height: 120px;
  }
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-media img {
    min-height: 380px;
  }

  .reviews-track {
    grid-auto-columns: minmax(220px, 1fr);
  }
}

@media (max-width: 600px) {
  .section {
    padding: 72px 6vw;
  }

  .hero {
    padding: 28px 6vw 64px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox-photo {
    height: 300px;
  }

  .reviews-track {
    grid-auto-columns: minmax(200px, 1fr);
  }

  .footer {
    flex-direction: column;
    gap: 10px;
  }

  .floating-chat {
    right: 14px;
    bottom: 14px;
  }
}
