﻿:root {
  --bg: #f5efe3;
  --sand: #e8d7b4;
  --earth: #77431f;
  --leaf: #2f5b37;
  --text: #1f1b16;
  --surface: #fffbf4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
  margin: 0;
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 10, 8, 0.58), rgba(12, 10, 8, 0.78));
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
  padding: 7rem 0;
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 8vw, 5.25rem);
  margin-bottom: 1.4rem;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 60ch;
  margin-bottom: 2.25rem;
}

.cta {
  display: inline-block;
  background: var(--sand);
  color: var(--text);
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
}

.menu {
  padding: 7rem 0;
}

.menu h2,
.about h2,
footer h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-lead {
  margin: 1rem 0 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.9rem;
  padding: 1.2rem 1.2rem 0.5rem;
}

.card p {
  margin: 0;
  padding: 0 1.2rem 1.4rem;
}

.card .price {
  padding: 0 1.2rem 0.4rem;
  font-weight: 700;
  color: var(--earth);
}

.about {
  background: linear-gradient(145deg, var(--sand), #f1e4cc);
  padding: 7rem 0;
}

.about-inner {
  max-width: 760px;
}

.about p {
  margin-top: 1.4rem;
  font-size: 1.1rem;
}

footer {
  background: var(--leaf);
  color: #fdf9ef;
  padding: 4rem 0;
}

.footer-inner p {
  margin: 0.35rem 0;
}

@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 0;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-content {
    padding: 3.5rem 0 4.5rem;
  }

  .hero p {
    margin-bottom: 1.5rem;
  }

  .menu,
  .about {
    padding: 4.5rem 0;
  }

  .card img {
    height: 220px;
  }
}

@media (max-width: 420px) {
  .hero-content {
    padding-top: 2.75rem;
  }

  .cta {
    width: 100%;
    text-align: center;
  }
}
