﻿:root {
  --bg: #f5f1e9;
  --bg-strong: #efe7d7;
  --text: #1f1b17;
  --muted: #5f554b;
  --accent: #2f6b4f;
  --accent-dark: #1d4a36;
  --accent-soft: #d9e6de;
  --sand: #cfa86a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(31, 27, 23, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 50%, var(--bg-strong) 100%);
}

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  background: rgba(245, 241, 233, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(47, 107, 79, 0.1);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 22px;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
}

.btn {
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(47, 107, 79, 0.4);
  box-shadow: none;
}

.btn-small {
  padding: 8px 18px;
  box-shadow: none;
  font-size: 14px;
}

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

.hero-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 72px 6vw;
}

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

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 36px);
  margin: 0 0 12px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.7;
}

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

.card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-body {
  padding: 18px 20px 22px;
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.promo {
  background: linear-gradient(120deg, #f3e7d2, #e5f0e8);
}

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

.promo-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
}

.promo-body {
  padding: 20px 22px 24px;
  display: grid;
  gap: 12px;
}

.price {
  align-self: start;
  background: var(--accent);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.promo-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.menu {
  background: var(--white);
}

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

.menu-card {
  background: var(--bg);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 8px;
}

.menu-card h3 {
  margin: 0 0 6px;
}

.menu-card p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: var(--muted);
}

.menu-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.gallery-grid img {
  border-radius: 18px;
  height: 220px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.booking {
  background: linear-gradient(180deg, #ffffff 0%, #f7f1e8 100%);
}

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

.booking-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--muted);
  font-size: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 27, 23, 0.15);
  font-family: inherit;
}

.booking-info {
  display: grid;
  gap: 16px;
}

.info-card {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: var(--muted);
}

.info-card h4 {
  margin: 0 0 10px;
  color: var(--text);
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 48px 6vw;
  background: var(--accent-dark);
  color: var(--white);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    background: none;
    border: 1px solid rgba(31, 27, 23, 0.2);
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 32px;
  }

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