:root {
  --bg: #f3efe6;
  --ink: #14261f;
  --muted: #4d6358;
  --green: #1a4d3a;
  --green-2: #2f6b52;
  --cream: #fffcf7;
  --line: #cfd8d1;
  --display: "Fraunces", Georgia, serif;
  --body: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
}

a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(180deg, rgba(20, 38, 31, 0.55), transparent);
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.25rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
}

.site-header nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.site-header nav a { text-decoration: none; opacity: 0.92; }
.nav-cta {
  background: #fff;
  color: var(--green) !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 18, 0.25), rgba(10, 24, 18, 0.72) 70%, rgba(10, 24, 18, 0.9));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem 3.5rem;
  color: #fff;
  max-width: 720px;
  animation: riseIn 0.9s ease both;
}

.hero-logo {
  width: min(160px, 42vw);
  height: auto;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  margin-bottom: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.hero-line {
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-style: italic;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 550;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--green-2);
  color: #fff;
}

.btn.ghost {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

.section .btn.ghost {
  border-color: var(--green);
  color: var(--green);
}

.section {
  padding: 4.5rem 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.section h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green);
  margin: 0 0 0.75rem;
}

.section p { color: var(--muted); line-height: 1.55; }

.lede { margin-bottom: 1.5rem; }

.about {
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-card.in {
  opacity: 1;
  transform: none;
}

.menu-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--green);
}

.menu-card .price {
  font-weight: 600;
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .site-header { padding-inline: 2rem; }
  .hero-inner { padding-inline: 2rem; }
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.gallery-grid img.in {
  opacity: 1;
  transform: none;
}

.visit-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .visit-grid { grid-template-columns: 1fr 1fr; }
}

.visit h3 {
  font-family: var(--display);
  color: var(--green);
  margin: 1.2rem 0 0.4rem;
}

.visit a { color: var(--green-2); }

.rating {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--ink) !important;
}

.site-footer {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  background: #12231c;
  color: #dfe8e2;
}

.site-footer img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  margin-bottom: 0.75rem;
}

.site-footer a { color: #9fd0b5; }

@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .site-header nav a:not(.nav-cta) { display: none; }
}
