:root {
  --bg: #f7efe3;
  --surface: #fffaf3;
  --surface-alt: #f1e4d3;
  --text: #2f2118;
  --muted: #685446;
  --accent: #4a2f21;
  --accent-soft: #7b533d;
  --border: #ddc7af;
  --max-width: 1120px;
  --radius: 14px;
  --shadow: 0 10px 24px rgba(41, 24, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: linear-gradient(180deg, #fff8ee, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.brand i {
  color: var(--accent);
}

.nav-toggle {
  margin-left: auto;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  width: 42px;
  height: 42px;
}

.primary-nav {
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0 0.9rem;
}

.primary-nav a {
  text-decoration: none;
  font-weight: 500;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--accent-soft);
}

.primary-nav.open {
  display: flex;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.lang-btn {
  border: 0;
  padding: 0.4rem 0.7rem;
  background: transparent;
  font-weight: 700;
  font-size: 0.8rem;
}

.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  background: url("../img/photo-01.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(35, 19, 12, 0.76), rgba(35, 19, 12, 0.36));
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 4rem 0;
  max-width: 640px;
}

.kicker {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 7vw, 3rem);
  margin: 0.65rem 0;
}

.section {
  padding: 3.4rem 0;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
}

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

.btn-secondary,
.btn-map {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.about {
  background: var(--surface);
}

.rating {
  margin-top: 1rem;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  background: var(--surface-alt);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}

.rating i {
  color: #bd7d30;
}

.menu-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.menu-card,
.testimonials blockquote,
.map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.menu-card i {
  color: var(--accent);
  font-size: 1.2rem;
}

.gallery {
  background: var(--surface-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-grid img {
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.testimonials blockquote {
  margin: 0;
}

.testimonials cite {
  display: block;
  margin-top: 0.65rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  font-size: 0.92rem;
}

.contact {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.contact-list,
.hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.contact-list i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.hours {
  margin-top: 1rem;
}

.hours li {
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--border);
}

.map-card iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 10px;
  background: #e7dfd3;
}

.map-note {
  color: var(--muted);
  margin-top: 0;
}

.btn-map {
  color: var(--accent);
  border-color: var(--accent);
  margin-top: 0.75rem;
}

.site-footer {
  background: #2f1d14;
  color: #f9efe4;
}

.footer-inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.2rem 0;
}

.site-footer nav {
  display: inline-flex;
  gap: 1rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

@media (min-width: 720px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    display: flex;
    grid-column: auto;
    flex-direction: row;
    justify-content: center;
    padding: 0;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
