:root {
  --bg: #f5efe3;
  --bg-2: #e8dcc6;
  --ink: #1b140f;
  --muted: #6a5a4a;
  --accent: #f2d681;
  --accent-2: #3d684e;
  --card: #fff9ef;
  --shadow: rgba(27, 20, 15, 0.14);
  --section-dark: #2e342b;
  --section-green: #3d684e;
  --button-yellow: #f2d681;
  --button-green: #3d684e;
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top left, #fff9f1 0%, var(--bg) 55%, var(--bg-2) 100%);
  color: var(--ink);
  min-height: 100vh;
}

html {
  scroll-padding-top: 96px;
}

.bg-orbit {
  position: fixed;
  inset: -40% 0 auto 30%;
  height: 60vh;
  background: radial-gradient(circle, rgba(242, 214, 129, 0.16) 0%, rgba(242, 214, 129, 0) 60%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7vw;
  background: rgba(61, 104, 78, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--accent);
  color: #fff8ee;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  overflow: hidden;
}

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

.brand-name {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  color: #f7f1e7;
}

.brand-tag {
  font-size: 0.9rem;
  color: rgba(247, 241, 231, 0.7);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: #f7f1e7;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--button-yellow);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #f7f1e7;
  margin: 6px 0;
}

main {
  padding: 40px 7vw 80px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.section.theme-dark,
.section.theme-green {
  padding: 56px clamp(18px, 4vw, 56px);
  border-radius: 28px;
}

.section.theme-dark {
  background: var(--section-dark);
  color: #f7f1e7;
}

.section.theme-green {
  background: var(--section-green);
  color: #f7f1e7;
}

.hero.theme-green {
  background: var(--section-green);
  color: #f7f1e7;
  padding: 56px clamp(18px, 4vw, 56px);
  border-radius: 28px;
}

.hero.theme-green .eyebrow,
.hero.theme-green .lead,
.hero.theme-green .hero-details span {
  color: rgba(247, 241, 231, 0.75);
}

.hero.theme-green .btn.ghost {
  border-color: rgba(242, 214, 129, 0.7);
  color: var(--button-yellow);
  background: rgba(0, 0, 0, 0.15);
}

.hero.theme-green .hero-card,
.hero.theme-green .hero-card-body {
  color: var(--ink);
}

.section.theme-dark .lead,
.section.theme-green .lead,
.section.theme-dark .eyebrow,
.section.theme-green .eyebrow,
.section.theme-dark .gallery-note,
.section.theme-green .gallery-note,
.section.theme-dark .form-note,
.section.theme-green .form-note,
.section.theme-dark .info-list span,
.section.theme-green .info-list span {
  color: rgba(247, 241, 231, 0.75);
}

.section.theme-dark .link,
.section.theme-green .link,
.section.theme-dark .socials a,
.section.theme-green .socials a {
  color: #1b140f;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--button-yellow);
  color: #1b140f;
  box-shadow: 0 12px 24px rgba(227, 180, 34, 0.25);
}

.btn.ghost {
  border-color: rgba(43, 91, 63, 0.45);
  color: var(--button-green);
  background: rgba(43, 91, 63, 0.08);
}

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

.hero-details {
  margin-top: 32px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  font-size: 0.9rem;
}

.hero-details span {
  color: var(--muted);
  display: block;
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px var(--shadow);
  transform: translateY(12px);
  animation: floatIn 1s ease forwards;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
}

.hero-image {
  height: 360px;
  position: relative;
  border-radius: 16px;
}

.hero-image.chalkboard {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 60%),
    linear-gradient(135deg, #1b1713, #0b0a09);
  color: #f4efe8;
  padding: 18px;
  font-family: "Caveat", "Space Grotesk", sans-serif;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  height: auto;
}

.hero-image.chalkboard::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(244, 239, 232, 0.45);
  border-radius: 12px;
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.hero-image.chalkboard::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 8px solid #3b2b1c;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.chalkboard-inner {
  position: relative;
  z-index: 1;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  padding: 8px 12px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

.chalkboard-title {
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.chalkboard-list {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.chalkboard-list span:first-child {
  flex: 1;
}

.hero-card-body {
  padding: 24px;
}

.hero-card-body h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 8px;
}

.link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.section-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 20px;
  color: #f7f1e7;
}

.section {
  display: grid;
  gap: 32px;
}

.section,
.hero {
  scroll-margin-top: 96px;
}

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

.callouts {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.callouts h4 {
  font-family: "Fraunces", serif;
  margin-bottom: 6px;
}

.about-panel {
  display: grid;
  gap: 24px;
}

.about-card {
  padding: 24px;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 18px 36px var(--shadow);
}

.about-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
}

.about-image {
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(42, 59, 45, 0.55), rgba(161, 106, 34, 0.45)),
    url("assets/restaurace.jpg") center/cover;
}

.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.menu-card {
  background: rgba(255, 249, 239, 0.08);
  border: 1px solid rgba(255, 249, 239, 0.12);
  padding: 20px;
  border-radius: 18px;
}

.menu-card h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 12px;
}

.menu-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  font-size: 0.95rem;
}

.menu-item span:first-child {
  flex: 1;
}

.menu-price {
  color: rgba(247, 241, 231, 0.85);
  font-weight: 600;
  white-space: nowrap;
}

.menu-note,
.menu-footnote {
  margin-top: 12px;
  color: rgba(247, 241, 231, 0.7);
  font-size: 0.9rem;
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 32px var(--shadow);
}

.cards .card {
  display: flex;
  flex-direction: column;
}

.section.theme-green .card {
  color: var(--ink);
}

.section.theme-dark .about-card,
.section.theme-dark .contact-card,
.section.theme-dark .map-card {
  color: var(--ink);
}

.card h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 8px;
}

.event-more {
  align-self: flex-end;
  margin-left: auto;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--button-yellow);
  color: #1b140f;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(27, 20, 15, 0.2);
}

.meta {
  margin-top: 16px;
  color: var(--accent-2);
  font-weight: 600;
}

.review-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--button-yellow);
  color: #1b140f;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  border: 1px solid rgba(27, 20, 15, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.gallery-item {
  height: 180px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background-color: #2b5b3f;
  background-size: cover;
  background-position: center;
  color: #fff8ee;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.gallery-note {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-note .btn {
  padding: 10px 18px;
  font-size: 0.95rem;
}

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

.booking-form {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 32px var(--shadow);
  display: grid;
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: #1b140f;
}

.booking-form input,
.booking-form textarea {
  border: 1px solid rgba(31, 27, 20, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: "Space Grotesk", sans-serif;
  background: #fff;
}

.booking-form .full {
  grid-column: 1 / -1;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.booking-info {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(42, 59, 45, 0.12), rgba(161, 106, 34, 0.1));
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.info-list span {
  color: var(--muted);
  display: block;
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-card,
.map-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 32px var(--shadow);
}

.map-placeholder {
  height: 240px;
  border-radius: 18px;
  background: repeating-linear-gradient(45deg, rgba(42, 59, 45, 0.16), rgba(42, 59, 45, 0.16) 12px, rgba(161, 106, 34, 0.12) 12px, rgba(161, 106, 34, 0.12) 24px);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--muted);
  overflow: hidden;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.socials a {
  text-decoration: none;
  color: #1b140f;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--button-yellow);
  border: 1px solid rgba(27, 20, 15, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: #f7dc8e;
  color: #1b140f;
}

.site-footer {
  padding: 24px 7vw 48px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(12px);
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .site-footer {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  main {
    padding: 32px 6vw 72px;
  }

  .hero-image {
    height: 320px;
  }

  .hero-image.chalkboard {
    max-width: 100%;
  }
}
