:root {
  --bg: #f9f7f4;
  --surface: #ffffff;
  --text: #2a2420;
  --muted: #6f6760;
  --accent: #5c4a3a;
  --accent-soft: #e8e0d6;
  --line: #e5dfd8;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 960px;
  --radius: 10px;
  --ease: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--ease);
}

a:hover {
  opacity: 0.75;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow {
  max-width: 640px;
}

/* Nav */

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}

.navbar.scrolled {
  background: rgba(249, 247, 244, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.75rem 0;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.navbar:not(.scrolled) .logo {
  color: #fff;
}

.logo span {
  font-weight: 400;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.navbar.scrolled .nav-links a {
  color: var(--muted);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  color: #fff !important;
  transition: background var(--ease), border-color var(--ease) !important;
}

.navbar.scrolled .nav-cta {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1 !important;
}

.navbar.scrolled .nav-cta:hover {
  background: var(--accent-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}

.navbar.scrolled .nav-toggle span {
  background: var(--text);
}

.nav-toggle.open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 1.5rem 4rem;
  background:
    linear-gradient(to top, rgba(30, 22, 16, 0.78) 0%, rgba(30, 22, 16, 0.3) 55%, rgba(30, 22, 16, 0.12) 100%),
    url("media/home.png") center / cover no-repeat;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0 0 1rem;
}

.eyebrow.dark {
  color: var(--muted);
  opacity: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.hero-lead {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.88;
  max-width: 42ch;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

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

.btn.primary:hover {
  background: var(--accent-soft);
  opacity: 1;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.btn.ghost.dark {
  border-color: var(--line);
  color: var(--text);
}

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

/* Sections */

section {
  padding: 5rem 0;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 2.5rem;
  max-width: 40ch;
}

/* Images */

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.65rem;
  line-height: 1.5;
}

/* About */

.about {
  padding-top: 4.5rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.about-note {
  font-size: 0.925rem;
}

.about-visual {
  margin: 0;
}

.about-visual img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.about-text .tags {
  justify-content: flex-start;
  margin-top: 1.75rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tags li {
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--muted);
}

/* Gallery */

.gallery {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
  margin-top: 2rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.gallery-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
  transition: transform 0.4s ease;
}

.gallery-wide img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Menu */

.menu {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.menu-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: transform var(--ease), box-shadow var(--ease);
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(42, 36, 32, 0.08);
}

.menu-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

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

.menu-feature {
  margin: 2.5rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.menu-feature img {
  aspect-ratio: 21 / 9;
}

.menu-feature figcaption {
  padding: 0.85rem 1.25rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
  margin: 0;
}

/* Reviews */

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

blockquote {
  margin: 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

blockquote p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

blockquote footer {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
}

/* Visit */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

dl {
  margin: 0 0 2rem;
}

dl div {
  margin-bottom: 1.25rem;
}

dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

dd {
  margin: 0;
  font-size: 0.95rem;
}

.visit-media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.visit-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.visit-photo img {
  aspect-ratio: 16 / 10;
}

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  flex: 1;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */

footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--line);
}

footer .logo {
  margin-bottom: 0.35rem;
}

footer p:last-child {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 80vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 5rem 2rem 2rem;
    background: var(--bg);
    border-left: 1px solid var(--line);
    transition: right var(--ease);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a,
  .navbar.scrolled .nav-links a {
    color: var(--text);
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    order: -1;
  }

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

  .gallery-wide {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .visit-media {
    order: -1;
  }

  .hero {
    min-height: 80vh;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: span 1;
  }

  .menu-feature img {
    aspect-ratio: 4 / 3;
  }
}
