:root {
  --q-teal: #339a99;
  --q-teal-d: #287c7b;
  --q-forest: #263a25;
  --q-forest-d: #1a2819;
  --q-olive: #394634;
  --q-cream: #f6f3ea;
  --q-paper: #fffdf8;
  --q-ink: #141814;
  --q-muted: #5c635c;
  --q-line: #d8ddd4;
  --q-white: #ffffff;
  --q-shadow: 0 18px 40px rgba(20, 24, 20, 0.12);
  --q-sans: "Outfit", "Segoe UI", sans-serif;
  --q-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --q-wrap: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--q-cream);
  color: var(--q-ink);
  font-family: var(--q-sans);
  font-size: 17px;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--q-teal-d); text-decoration: none; }
a:hover { color: var(--q-forest); }

h1, h2, h3, h4 {
  font-family: var(--q-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--q-forest);
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.2rem, 6.2vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.45rem; }

p { margin: 0 0 1em; }

.q-wrap {
  width: min(calc(100% - 40px), var(--q-wrap));
  margin-inline: auto;
}

.q-skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 8px 12px;
  z-index: 200;
}
.q-skip:focus { left: 8px; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.q-kicker {
  margin: 0 0 10px;
  color: var(--q-teal-d);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.q-kicker--light { color: var(--q-teal); }

.q-lead {
  font-size: 1.12rem;
  color: var(--q-muted);
  max-width: 36rem;
}
.q-lead--light { color: rgba(255, 255, 255, 0.86); }

.q-center { text-align: center; margin: 28px 0 0; }

.q-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--q-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.q-btn--sm { min-height: 40px; padding: 0 16px; font-size: 0.88rem; }
.q-btn--teal { background: var(--q-teal); color: #fff; }
.q-btn--teal:hover { background: var(--q-teal-d); color: #fff; }
.q-btn--forest { background: var(--q-forest); color: #fff; }
.q-btn--forest:hover { background: var(--q-forest-d); color: #fff; }
.q-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.q-btn--ghost:hover { background: #fff; color: var(--q-forest); }
.q-btn--ghost-dark { background: transparent; color: var(--q-forest); border-color: var(--q-line); }
.q-btn--ghost-dark:hover { background: var(--q-forest); color: #fff; }

.q-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--q-forest);
  color: #fff;
}
.q-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
.q-logo img { height: 48px; width: auto; }
.q-nav { margin-left: auto; }
.q-nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.q-nav-list a {
  display: block;
  padding: 8px 12px;
  color: rgba(255,255,255,0.86);
  font-weight: 600;
  font-size: 0.92rem;
}
.q-nav-list a:hover,
.q-nav-list a[aria-current="page"] { color: #fff; }
.q-header__tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.q-social {
  color: #fff;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.q-social:hover { background: rgba(255,255,255,0.12); color: #fff; }
.q-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.q-burger i {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
}

.q-hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.q-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
}
.q-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 40, 25, 0.82) 0%, rgba(26, 40, 25, 0.45) 48%, rgba(26, 40, 25, 0.15) 100%),
    linear-gradient(180deg, rgba(26, 40, 25, 0.15) 0%, rgba(26, 40, 25, 0.55) 100%);
}
.q-hero__copy {
  position: relative;
  padding: 80px 0 72px;
  max-width: 720px;
  margin-left: max(20px, calc((100% - var(--q-wrap)) / 2));
  margin-right: auto;
  width: min(calc(100% - 40px), 640px);
}
.q-hero h1 { color: #fff; margin-bottom: 16px; }
.q-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.q-usp { background: var(--q-forest); color: #fff; padding: 28px 0 36px; }
.q-usp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.q-usp article { padding: 8px 8px 8px 0; }
.q-usp span {
  display: block;
  color: var(--q-teal);
  font-family: var(--q-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.q-usp h2 { color: #fff; font-size: 1.35rem; margin-bottom: 6px; }
.q-usp p { margin: 0; color: rgba(255,255,255,0.78); }

.q-section { padding: 72px 0; }
.q-section--dark { background: #101410; color: #fff; }
.q-section--dark h2,
.q-section--olive h2 { color: #fff; }
.q-section--olive { background: var(--q-olive); color: #fff; }
.q-sectionhead { margin-bottom: 32px; max-width: 40rem; }
.q-sectionhead p:last-child { margin-bottom: 0; color: var(--q-muted); }
.q-sectionhead--light p:last-child,
.q-section--dark .q-sectionhead p:last-child { color: rgba(255,255,255,0.72); }

.q-dishes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.q-dish {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  color: #fff;
  aspect-ratio: 1;
}
.q-dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.q-dish:hover img { transform: scale(1.04); }
.q-dish:hover { color: #fff; }
.q-dish__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 48px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78));
}
.q-dish__meta em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--q-teal);
}
.q-dish__meta strong { font-size: 1.05rem; }

.q-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.q-split__media img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: var(--q-shadow);
}
.q-split--about { padding-bottom: 24px; }

.q-prose p { max-width: 40rem; }
.q-prose p:last-child { margin-bottom: 1.2em; }

.q-locs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.q-loc {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
}
.q-loc--paper {
  background: var(--q-paper);
  border-color: var(--q-line);
  box-shadow: var(--q-shadow);
}
.q-loc__city {
  margin: 0 0 6px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--q-teal);
}
.q-loc h2,
.q-loc h3 { color: inherit; margin-bottom: 8px; }
.q-loc__extra { color: inherit; opacity: 0.82; margin-bottom: 16px; }
.q-facts {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.q-facts li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 8px;
}
.q-facts svg { flex: 0 0 18px; margin-top: 3px; opacity: 0.85; }
.q-facts a { color: inherit; font-weight: 700; }
.q-loc__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.92rem;
}
.q-loc__rating strong { font-size: 1.2rem; }
.q-stars { display: inline-flex; gap: 2px; color: rgba(255,255,255,0.28); }
.q-loc--paper .q-stars { color: #d8ddd4; }
.q-stars .is-on { color: #e2b93b; }
.q-stars svg { display: block; }
.q-loc__actions { display: flex; flex-wrap: wrap; gap: 8px; }

.q-galstrip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.q-galstrip a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}
.q-galstrip img { width: 100%; height: 100%; object-fit: cover; }

.q-pagehead {
  background: var(--q-forest);
  color: #fff;
  padding: 56px 0 48px;
}
.q-pagehead h1 { color: #fff; max-width: 18ch; }
.q-page { padding-bottom: 64px; }
.q-page > .q-wrap { padding-top: 40px; }

.q-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 12px auto 8px;
}
.q-pillars article {
  background: var(--q-paper);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid var(--q-line);
}
.q-pillars p { margin: 0; color: var(--q-muted); }

.q-cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 28px;
  background: var(--q-forest);
  color: #fff;
  border-radius: 16px;
}
.q-cta-band h2 { color: #fff; margin: 0 0 6px; }
.q-cta-band p { margin: 0; color: rgba(255,255,255,0.75); }

.q-menu-table-wrap { overflow-x: auto; }
.q-menu-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--q-paper);
  border-radius: 14px;
  overflow: hidden;
  font-size: 0.95rem;
}
.q-menu-table th,
.q-menu-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--q-line);
  text-align: left;
  vertical-align: top;
}
.q-menu-table thead th {
  background: var(--q-forest);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.q-menu-table tbody th { width: 42%; font-weight: 500; }
.q-menu-table tbody th strong {
  display: block;
  font-family: var(--q-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--q-forest);
  margin-bottom: 4px;
}
.q-menu-table tbody th span {
  display: block;
  color: var(--q-muted);
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 400;
}
.q-menu-table td {
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}

.q-menu-extra {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.q-menu-extra section {
  background: var(--q-paper);
  border: 1px solid var(--q-line);
  border-radius: 14px;
  padding: 22px;
}
.q-pricelist { list-style: none; margin: 0; padding: 0; }
.q-pricelist li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--q-line);
}
.q-pricelist li:last-child { border-bottom: 0; }
.q-menu-note p { color: var(--q-muted); }

.q-gallery-filters {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.q-gallery-filters button {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}
.q-gallery-filters button.is-active,
.q-gallery-filters button:hover {
  background: var(--q-teal);
  border-color: var(--q-teal);
}

.q-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
}
.q-bento__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
}
.q-bento__item img { width: 100%; height: 100%; object-fit: cover; }
.q-bento__item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.q-bento__item--wide { grid-column: span 2; }
.q-bento__item--tall { grid-row: span 2; }
.q-bento__item.is-hidden { display: none; }

.q-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 8, 0.92);
  z-index: 80;
  display: grid;
  place-items: center;
  color: #fff;
}
.q-lightbox[hidden] { display: none; }
.q-lightbox figure { margin: 0; max-width: min(92vw, 1000px); }
.q-lightbox img { max-height: 80vh; margin: 0 auto; }
.q-lightbox figcaption { text-align: center; margin-top: 10px; }
.q-lightbox__close,
.q-lightbox__nav {
  position: absolute;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
}
.q-lightbox__close { top: 16px; right: 24px; }
.q-lightbox__prev { left: 16px; }
.q-lightbox__next { right: 16px; }

.q-contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 28px;
  padding-top: 8px;
}
.q-contact-meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--q-forest);
  font-weight: 600;
}

.q-footer {
  background: var(--q-forest-d);
  color: rgba(255,255,255,0.82);
  padding-top: 48px;
}
.q-footer h2 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.q-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}
.q-footer .q-nav-list { display: grid; gap: 6px; }
.q-footer .q-nav-list a { color: rgba(255,255,255,0.82); padding: 0; }
.q-footer .q-nav-list a:hover { color: #fff; }
.q-footer__social { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.q-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.q-footer__contact { list-style: none; margin: 0; padding: 0; }
.q-footer__contact li { margin: 0 0 8px; }
.q-footer__contact a { color: #fff; font-weight: 700; }
.q-footer__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0 72px;
  font-size: 0.88rem;
}
.q-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.q-footer__bar a { color: rgba(255,255,255,0.82); }

.q-callbar {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  background: var(--q-teal);
  color: #fff;
  border-radius: 999px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: var(--q-shadow);
}
.q-callbar:hover { color: #fff; background: var(--q-teal-d); }

@media (max-width: 980px) {
  .q-usp__grid,
  .q-dishes__grid,
  .q-split,
  .q-locs,
  .q-menu-extra,
  .q-pillars,
  .q-footer__grid {
    grid-template-columns: 1fr;
  }
  .q-dishes__grid { grid-template-columns: 1fr 1fr; }
  .q-galstrip { grid-template-columns: repeat(3, 1fr); }
  .q-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .q-bento__item--wide,
  .q-bento__item--tall { grid-column: auto; grid-row: auto; }
  .q-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--q-forest-d);
    display: none;
    padding: 12px 20px 20px;
  }
  body.nav-open .q-nav { display: block; }
  .q-nav-list { flex-direction: column; }
  .q-burger { display: block; }
  .q-header__cta { display: none; }
  .q-cta-band { flex-direction: column; align-items: flex-start; }
  .q-hero { min-height: 78vh; }
}

@media (max-width: 800px) {
  .q-menu-table thead { display: none; }
  .q-menu-table,
  .q-menu-table tbody,
  .q-menu-table tr,
  .q-menu-table th,
  .q-menu-table td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .q-menu-table tbody th { width: 100%; padding-bottom: 6px; }
  .q-menu-table td {
    display: flex;
    justify-content: space-between;
    text-align: right;
    padding: 6px 12px;
    border-bottom: 0;
  }
  .q-menu-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--q-muted);
    text-align: left;
    padding-right: 12px;
  }
  .q-menu-table tr {
    padding: 12px 0 16px;
    border-bottom: 1px solid var(--q-line);
  }
}

@media (max-width: 640px) {
  .q-dishes__grid,
  .q-galstrip { grid-template-columns: 1fr 1fr; }
  .q-social { display: none; }
  .q-callbar { display: inline-flex; }
  .q-header__inner { min-height: 64px; }
  .q-hero { min-height: 72vh; }
  .q-hero__copy { padding: 48px 0 88px; }
  .q-usp { padding-bottom: 88px; }
  h1 { font-size: clamp(2rem, 11vw, 3.1rem); }
}
