:root {
  --brand: #136f63;
  --accent: #e85d75;
  --ink: #13201d;
  --text: #263430;
  --soft: #eff6f2;
  --paper: #fbfdfb;
  --line: rgba(19, 32, 29, 0.14);
  --shadow: 0 18px 50px rgba(19, 32, 29, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  background: var(--ink);
  color: white;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  overflow: hidden;
  border-radius: var(--radius);
  color: white;
  background: var(--brand);
}

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

.brand-name {
  max-width: 16rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link,
.language-menu a {
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  color: color-mix(in srgb, var(--text) 78%, transparent);
}

.nav-link:hover,
.nav-link.active,
.language-menu a:hover,
.language-menu a.active {
  background: var(--soft);
  color: var(--ink);
}

.language-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-left: 0.5rem;
  border-left: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border: 1px solid var(--brand);
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  background: var(--brand);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--brand) 24%, transparent);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--brand) 30%, transparent);
}

.button.ghost {
  background: transparent;
  color: var(--brand);
  box-shadow: none;
}

.button.small {
  min-height: 2.35rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1rem, 4vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(19, 32, 29, 0.82), rgba(19, 32, 29, 0.25), rgba(19, 32, 29, 0.06));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--soft);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slow-zoom 18s ease-in-out infinite alternate;
}

.hero-content {
  max-width: 760px;
  color: white;
}

.hero h1,
.page-hero h1,
.food-detail h1,
.article-page h1 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 48rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-panel,
.review-card,
.notice,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  background: color-mix(in srgb, white 88%, transparent);
  box-shadow: var(--shadow);
}

.hero-panel {
  align-self: end;
  backdrop-filter: blur(12px);
}

.hero-panel ul,
.hours,
.extra-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li,
.hours li,
.extra-group li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}

.hero-panel li:last-child,
.hours li:last-child,
.extra-group li:last-child {
  border-bottom: 0;
}

.status-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.status-pill.open::before,
.status-pill.closed::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #53e6a5;
}

.status-pill.closed::before {
  background: var(--accent);
}

.section,
.menu-shell,
.contact-grid,
.reserve-section,
.food-detail,
.article-page {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section.muted {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section h2,
.food-detail h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.category-grid,
.food-grid,
.post-grid {
  display: grid;
  gap: 1rem;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

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

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

.category-card,
.food-card,
.post-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.food-card:hover,
.post-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand) 42%, var(--line));
  box-shadow: var(--shadow);
}

.category-card {
  display: grid;
  min-height: 190px;
  align-content: end;
  padding: 1rem;
  color: white;
  background: var(--brand);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(19, 32, 29, 0.76));
}

.category-card span,
.category-card small {
  position: relative;
  z-index: 1;
  font-weight: 900;
}

.category-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-card a {
  display: grid;
  height: 100%;
}

.food-photo,
.post-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: var(--soft);
}

.food-card-body,
.post-card {
  padding: 1rem;
}

.food-card h3,
.post-card h3 {
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-size: 1.15rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 1rem;
}

.price-row strong {
  color: var(--brand);
  font-size: 1.15rem;
}

.price-row.large {
  justify-content: flex-start;
  font-size: 1.5rem;
}

.old-price {
  color: color-mix(in srgb, var(--text) 52%, transparent);
  text-decoration: line-through;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
}

.review-photo {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.page-hero {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0 2rem;
  color: var(--ink);
}

.page-hero.compact h1 {
  max-width: 820px;
}

.menu-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.menu-tools {
  position: sticky;
  top: 6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: white;
}

label span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.78rem 0.9rem;
  color: var(--ink);
  background: white;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid color-mix(in srgb, var(--brand) 20%, transparent);
  border-color: var(--brand);
}

.filter-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.filter-list button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  background: white;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-align: start;
  cursor: pointer;
}

.filter-list button.active,
.filter-list button:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

.menu-category {
  scroll-margin-top: 7rem;
  margin-bottom: 2.5rem;
}

.category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.category-title h2 {
  margin: 0;
  color: var(--ink);
}

.category-title span {
  display: grid;
  place-items: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand);
  font-weight: 900;
}

.food-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.detail-photo,
.article-hero {
  width: 100%;
  max-height: 620px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.lead {
  font-size: 1.18rem;
}

.rich-text {
  color: var(--text);
}

.rich-text img,
.rich-text iframe {
  max-width: 100%;
}

.option-block {
  margin-top: 2rem;
}

.size-list {
  display: grid;
  gap: 0.75rem;
}

.size-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  background: white;
}

.extra-group {
  margin: 0 0 0.6rem 1rem;
  padding: 0.7rem 0.9rem;
  border-left: 3px solid var(--brand);
  background: var(--soft);
}

.reserve-frame {
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 1.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: white;
}

.hp-field {
  position: absolute;
  left: -10000px;
}

.form-status {
  margin: 0;
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  font-weight: 800;
}

.form-status.success {
  color: #07523f;
  background: #def8ec;
}

.form-status.error {
  color: #7a1330;
  background: #ffe1e8;
}

.article-page {
  max-width: 860px;
}

.article-page .article-hero {
  margin-bottom: 2rem;
}

.site-footer {
  margin-top: 3rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem);
  color: white;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 1.5rem;
}

.footer-title {
  margin: 0 0 0.8rem;
  font-weight: 900;
}

.site-footer a {
  display: block;
  color: color-mix(in srgb, white 86%, transparent);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.socials a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

.copyright {
  margin: 2rem 0 0;
  color: color-mix(in srgb, white 65%, transparent);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: white;
  box-shadow: var(--shadow);
}

.image-placeholder {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 16%, white), color-mix(in srgb, var(--accent) 14%, white));
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-content: center;
  width: min(680px, calc(100% - 2rem));
  margin: 0 auto;
  text-align: center;
}

.setup-page {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.setup-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 4vw, 2rem);
  background: white;
  box-shadow: var(--shadow);
}

.setup-card h1 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.setup-result {
  margin: 1rem 0;
  border-radius: var(--radius);
  padding: 1rem;
}

.setup-result.success {
  background: #def8ec;
  color: #07523f;
}

.setup-result.error {
  background: #ffe1e8;
  color: #7a1330;
}

.setup-help {
  margin-top: 1.5rem;
}

.diagnostic-block,
.setup-help pre {
  max-width: 100%;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: #f6f8f7;
  color: var(--ink);
  text-align: left;
  white-space: pre-wrap;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.checkbox-row input {
  width: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

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

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.8rem;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .language-menu {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 0.75rem 0 0;
  }

  .hero,
  .split,
  .menu-shell,
  .food-detail,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

  .hero::after {
    background: rgba(19, 32, 29, 0.62);
  }

  .menu-tools {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand-name {
    max-width: 10rem;
  }

  .section-head,
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero {
    padding: 1rem;
  }

  .hero h1,
  .page-hero h1,
  .food-detail h1,
  .article-page h1 {
    font-size: 2.55rem;
  }
}
