:root {
  --bg: #201714;
  --bg-soft: #2a1f1b;
  --paper: #e9d7c6;
  --paper-soft: #dcc2ad;
  --panel: #2e221d;
  --panel-2: #3a2a24;
  --text: #f4eadf;
  --muted: #cab8a8;
  --line: rgba(255, 244, 235, 0.09);
  --accent: #bf7a50;
  --accent-soft: #e0ae82;
  --accent-deep: #8e5234;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --container: 1160px;
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(224, 174, 130, 0.05), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(32, 23, 20, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent-soft));
  color: #fff8f2;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(191, 122, 80, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
}

.nav-links a {
  transition: color 0.22s ease;
}

.nav-links a:hover {
  color: var(--paper);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent-soft));
  color: #241915;
  box-shadow: 0 12px 28px rgba(191, 122, 80, 0.22);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(224, 174, 130, 0.35);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(22, 16, 14, 0.25), rgba(22, 16, 14, 0.25)),
    url("https://images.unsplash.com/photo-1445116572660-236099ec97a0?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--accent-soft);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2,
.accent-copy h2 {
  margin: 0 0 1rem;
  font-family: "DM Serif Display", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6.7vw, 5.5rem);
  max-width: 11ch;
}

.hero-copy p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-tags span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #f1e1d4;
  font-size: 0.9rem;
}

.hero-poster {
  display: flex;
  justify-content: flex-end;
}

.poster-card {
  width: min(100%, 420px);
  padding: 2rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(233, 215, 198, 0.1), rgba(233, 215, 198, 0.03)),
    var(--panel);
  border: 1px solid rgba(224, 174, 130, 0.14);
  box-shadow: var(--shadow);
  position: relative;
}

.poster-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(224, 174, 130, 0.22);
  border-radius: 20px;
  pointer-events: none;
}

.poster-badge {
  display: inline-block;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(224, 174, 130, 0.12);
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.poster-kicker {
  margin: 0 0 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.poster-card h2 {
  margin: 0 0 0.9rem;
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.poster-text {
  margin: 0;
  color: var(--muted);
}

.poster-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 1.3rem 0 1rem;
}

.poster-location {
  margin: 0;
  color: var(--paper);
  font-weight: 600;
}

.section {
  padding: 6rem 0;
}

.intro-strip {
  padding-top: 1rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.intro-item {
  padding: 1.25rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.intro-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--paper);
}

.intro-item span {
  color: var(--muted);
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.section-dark {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.section-heading p {
  color: var(--muted);
  max-width: 65ch;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-column {
  display: grid;
  gap: 1rem;
}

.menu-block {
  padding: 1.3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
}

.menu-block h3 {
  margin: 0 0 1rem;
  font-family: "DM Serif Display", serif;
  font-size: 1.65rem;
  color: var(--paper);
}

.menu-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px dashed rgba(255, 244, 235, 0.12);
}

.menu-line:first-of-type {
  border-top: none;
  padding-top: 0;
}

.menu-line strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.menu-line span {
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-line b {
  color: var(--accent-soft);
  white-space: nowrap;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.about-copy p {
  color: var(--muted);
  max-width: 62ch;
}

.note-card {
  padding: 2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.note-label {
  margin: 0 0 0.7rem;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

.note-text {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: 1.8rem;
  line-height: 1.15;
  color: var(--paper);
}

.experience-section {
  padding-top: 1rem;
}

.experience-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.experience-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.experience-number {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent-soft);
  font-family: "DM Serif Display", serif;
  font-size: 1.7rem;
}

.experience-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 280px 280px;
  gap: 1rem;
}

.gallery-item {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
}

.gallery-item.large {
  grid-row: 1 / 3;
  background-image: url("https://images.unsplash.com/photo-1445116572660-236099ec97a0?auto=format&fit=crop&w=1200&q=80");
}

.gallery-item:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1453614512568-c4024d13c247?auto=format&fit=crop&w=1000&q=80");
}

.gallery-item:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1000&q=80");
}

.gallery-item.wide {
  grid-column: 2 / 4;
  background-image: url("https://images.unsplash.com/photo-1511920170033-f8396924c348?auto=format&fit=crop&w=1200&q=80");
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.review-card,
.contact-box {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.review-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.review-card p {
  color: var(--muted);
}

.review-card strong {
  color: var(--paper);
}

.stars {
  color: #efbf8d;
  letter-spacing: 0.14em;
  margin-bottom: 0.7rem;
}

.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.contact-copy h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}

.contact-copy p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.contact-list span {
  color: var(--muted);
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  margin-bottom: 0.7rem;
}

.footer-text {
  color: var(--muted);
  max-width: 45ch;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-layout,
  .about-layout,
  .contact-box,
  .menu-board,
  .intro-grid,
  .experience-layout {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }

  .gallery-item.large {
    grid-row: auto;
  }

  .gallery-item.wide {
    grid-column: 1 / 3;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-poster {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(32, 23, 20, 0.98);
    border: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-cta {
    display: none;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding: 4.5rem 0 3rem;
  }

  .hero-copy h1 {
    max-width: 9ch;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 240px);
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.reservation-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.reservation-copy h2 {
  margin: 0 0 1rem;
  font-family: "DM Serif Display", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.reservation-copy p {
  color: var(--muted);
  max-width: 52ch;
}

.reservation-form {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.92rem;
  color: var(--paper);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 1024px) {
  .reservation-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}