*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sage: #3f5d4a;
  --sage-deep: #24362c;
  --blush: #c98b8b;
  --blush-soft: #e8c4c0;
  --ivory: #f7f2ec;
  --paper: #fffdf9;
  --ink: #1c241f;
  --muted: #5c675f;
  --line: rgba(36, 54, 44, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
}

h1, h2, h3, .logo, .brand-mark, .menu-title, .foot strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(247, 242, 236, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  font-size: 1.35rem;
  color: var(--sage-deep);
  white-space: nowrap;
}

.nav nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.nav nav a:hover { color: var(--sage-deep); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--sage);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2000&q=80")
    center/cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 36, 31, 0.35) 0%, rgba(28, 36, 31, 0.55) 45%, rgba(28, 36, 31, 0.82) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(201, 139, 139, 0.25), transparent 50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4.5rem;
  max-width: 720px;
  margin-left: max(calc((100% - 1120px) / 2), 1.25rem);
  margin-right: auto;
  animation: riseIn 1s ease-out both;
}

.brand-mark {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
  color: var(--blush-soft);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  font-weight: 600;
}

.lead {
  font-size: 1.05rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
}

.actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn.primary {
  background: var(--blush);
  color: #fff;
}

.btn.primary:hover { background: #b87575; }

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn.ghost:hover { background: rgba(255, 255, 255, 0.1); }

.btn.soft {
  background: #efe6df;
  color: var(--sage-deep);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blush);
  margin-bottom: 0.85rem;
}

.eyebrow.light { color: var(--blush-soft); }

.about {
  padding: 5.5rem 0;
  background:
    radial-gradient(circle at top right, rgba(232, 196, 192, 0.35), transparent 40%),
    var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}

.about-text p + p { margin-top: 0.9rem; }
.about-text p { color: var(--muted); font-size: 1.02rem; }

.about-photo {
  height: min(520px, 70vw);
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 1.5rem 4rem;
  box-shadow: 0 24px 60px rgba(36, 54, 44, 0.16);
}

.menu {
  padding: 5.5rem 0;
  background:
    linear-gradient(160deg, var(--sage-deep), #2f4638 55%, #3a5244);
  color: #fff;
}

.menu-title {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  margin-bottom: 0.6rem;
}

.menu-lead {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 34rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.menu-grid li {
  padding: 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-num {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  color: var(--blush-soft);
  margin-bottom: 0.85rem;
}

.menu-grid h3 {
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
}

.menu-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.contact {
  padding: 5.5rem 0;
  background:
    linear-gradient(180deg, rgba(232, 196, 192, 0.22), transparent 30%),
    var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--sage-deep);
  margin-bottom: 0.8rem;
}

.contact-lead {
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-details span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--blush);
  margin-bottom: 0.35rem;
}

.contact-details a { color: var(--sage); font-weight: 600; }

.foot {
  padding: 1.4rem 0;
  background: var(--sage-deep);
  color: rgba(255, 255, 255, 0.78);
}

.foot-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.foot strong {
  color: #fff;
  font-size: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    gap: 0.5rem;
  }

  .nav nav { display: none; }

  .hero-copy {
    margin-left: 1.25rem;
    padding-bottom: 3.5rem;
  }

  .about-photo {
    border-radius: 1.25rem;
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-copy,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
