:root {
  --bg: #f7f5ee;
  --surface: #ffffff;
  --surface-dark: #122018;
  --text: #1f1f1f;
  --muted: #6f6f6f;
  --accent: #2f7d4a;
  --accent-dark: #245f39;
  --gold: #f4b942;
  --border: #ddd8ca;
  --radius: 20px;
  --shadow: 0 18px 45px rgba(38, 25, 15, 0.1);
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(92%, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 245, 238, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 216, 202, 0.85);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 900;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

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

.mobile-menu-button {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 72px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-copy {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 700;
  font-size: 0.94rem;
}

.hero-card {
  background: var(--surface-dark);
  min-height: 500px;
  border-radius: 32px;
  padding: 34px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    to top,
    rgba(10, 18, 13, 0.78) 0%,
    rgba(10, 18, 13, 0.12) 55%,
    rgba(10, 18, 13, 0.02) 100%
  );
  pointer-events: none;
}

.hero-card::after {
  display: none;
}

.hero-card-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
}

.hero-card-content strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

/* Highlights */
.highlights {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.highlight {
  text-align: center;
  padding: 14px;
}

.highlight strong {
  display: block;
  font-size: 1.05rem;
}

.highlight span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(38, 25, 15, 0.06);
}

.menu-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eaf3ec;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.menu-card h3 {
  font-size: 1.15rem;
}

.price {
  color: var(--accent);
  font-weight: 900;
  white-space: nowrap;
}

.menu-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.menu-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 9px;
  background: #f5efe7;
  border-radius: 999px;
}

/* About */
.about {
  background: #e9efe7;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-visual {
  height: 430px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-dark);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-list > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-list > div > div {
  display: block;
}

.check {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 900;
}

/* Info */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}

.hours-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 9px;
  border-bottom: 1px dashed var(--border);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-row span:first-child {
  font-size: 1.2rem;
}

.map-placeholder {
  margin-top: 24px;
  min-height: 190px;
  border-radius: 16px;
  background:
    linear-gradient(45deg, #e2e6dc 25%, transparent 25%),
    linear-gradient(-45deg, #e2e6dc 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e2e6dc 75%),
    linear-gradient(-45deg, transparent 75%, #e2e6dc 75%), #f7f5ee;
  background-size: 36px 36px;
  background-position:
    0 0,
    0 18px,
    18px -18px,
    -18px 0px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
}

.hours-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.stars {
  color: #d99b15;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review p {
  color: var(--muted);
  margin-bottom: 18px;
}

/* CTA */
.cta {
  padding: 80px 0;
}

.cta-box {
  background: var(--surface-dark);
  color: white;
  border-radius: 30px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-box p {
  color: #cfcfcf;
  margin-top: 8px;
  max-width: 600px;
}

/* Footer */
footer {
  background: #111;
  color: #e8e8e8;
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

footer h4 {
  color: white;
  margin-bottom: 14px;
}

footer p,
footer a {
  color: #bdbdbd;
}

footer a:hover {
  color: white;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
}

.copyright {
  border-top: 1px solid #2f2f2f;
  padding-top: 22px;
  color: #8d8d8d;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-card {
    min-height: 420px;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 4%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu-button {
    display: block;
  }

  .nav > .btn {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 68px 0;
  }

  .menu-grid,
  .reviews-grid,
  .highlight-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-card {
    min-height: 370px;
  }

  .about-visual {
    height: 360px;
  }

  .cta-box {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
