:root {
  --cream: #faf6f0;
  --paper: #fffdf9;
  --ink: #2a2420;
  --muted: #6b5f56;
  --terracotta: #c45c3e;
  --terracotta-dark: #a3472f;
  --sage: #6f7f63;
  --sage-soft: #e8efe3;
  --wood: #d4b896;
  --line: rgba(42, 36, 32, 0.1);
  --shadow: 0 18px 50px rgba(42, 36, 32, 0.08);
  --radius: 18px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(196, 92, 62, 0.08), transparent 32%),
    radial-gradient(circle at bottom left, rgba(111, 127, 99, 0.1), transparent 28%),
    var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--paper);
  padding: 0.75rem 1rem;
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 1rem;
  min-height: 52px;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(42, 36, 32, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand-name {
  font-size: 0.95rem;
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.lang-select-wrap {
  display: inline-flex;
}

.lang-select {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b5f56' d='M2.5 4.5 6 8l3.5-3.5'/%3E%3C/svg%3E")
    no-repeat right 0.55rem center;
  color: var(--ink);
  padding: 0.35rem 1.65rem 0.35rem 0.65rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 34px;
}

.lang-select:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  border-radius: 1px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-panel {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  z-index: 30;
  min-width: min(14rem, calc(100vw - 2rem));
  padding: 0.45rem;
  background: rgba(255, 253, 249, 0.98);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 0 var(--radius);
  box-shadow: var(--shadow);
}

.nav-panel[hidden] {
  display: none;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--terracotta);
  background: rgba(196, 92, 62, 0.08);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.kicker {
  margin: 0 0 0.5rem;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 11ch;
}

.hero-lead,
.section-lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--terracotta);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--terracotta-dark);
}

.button-secondary {
  background: var(--paper);
  border-color: var(--line);
}

.hero-media,
.gallery-card,
.menu-card,
.feature-card,
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img,
.gallery-card img,
.menu-card img {
  width: 100%;
  object-fit: cover;
}

.hero-media img {
  height: 100%;
  min-height: 360px;
}

.hero-media video {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  object-fit: cover;
  background: #000;
}

.hero-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  border: 0;
  display: block;
  background: #000;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage);
  font-size: 0.88rem;
  font-weight: 600;
}

.section {
  margin-bottom: 3rem;
}

.section-head {
  margin-bottom: 1.25rem;
}

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

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

.feature-card {
  padding: 1.1rem;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

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

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

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

.gallery-card img {
  aspect-ratio: 4 / 3;
}

.gallery-card figcaption {
  margin-top: auto;
  padding: 0.8rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.menu-photos {
  margin-top: 1rem;
}

.menu-card img {
  aspect-ratio: 10 / 14;
  object-fit: cover;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-group {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}

.menu-group h3 {
  margin-bottom: 0.8rem;
  color: var(--terracotta);
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-list li:last-child {
  border-bottom: 0;
}

.menu-list span:last-child {
  color: var(--muted);
  white-space: nowrap;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.contact-card {
  padding: 1.2rem;
}

.contact-card dl {
  margin: 0;
}

.contact-card dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 0.9rem;
}

.contact-card dt:first-child {
  margin-top: 0;
}

.contact-card dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--terracotta);
}

@media (max-width: 960px) {
  .hero,
  .contact-grid,
  .menu-columns,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .brand-tag {
    display: none;
  }

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

  h1 {
    max-width: none;
  }
}
