:root {
  --bg: #120d0b;
  --bg-soft: #1b1411;
  --panel: rgba(32, 24, 20, 0.94);
  --text: #f4e7d7;
  --muted: #cfb9a3;
  --line: rgba(244, 231, 215, 0.12);
  --accent: #e2bf95;
  --accent-strong: #f2d8b4;
  --success: #97c793;
  --radius: 24px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  --font-display: "Segoe UI", "Helvetica Neue", sans-serif;
  --font-body: "Arial", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(130, 91, 62, 0.3), transparent 30%),
    linear-gradient(180deg, #140d0b 0%, #0d0908 100%);
  padding-bottom: 110px;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.mobile-shell {
  width: min(100% - 28px, 480px);
  margin: 0 auto;
}


.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0 10px;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(18, 13, 11, 0.92), rgba(18, 13, 11, 0.7));
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(30, 22, 18, 0.9);
  box-shadow: var(--shadow);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand h1,
.brand p,
.hero-card h2,
.section-header h2,
.menu-card h3,
.story-card h3,
.form-card h2,
.contact-card h3 {
  margin: 0;
}

.brand h1 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(242, 216, 180, 0.2);
  background: rgba(242, 216, 180, 0.08);
  color: var(--text);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(242, 216, 180, 0.2);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(74, 56, 46, 0.92), rgba(49, 36, 30, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 243, 230, 0.08);
  color: var(--text);
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.menu-toggle__lines {
  display: grid;
  gap: 4px;
}

.menu-toggle__line {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-strong), #fff0dc);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.mobile-drawer {
  position: fixed;
  top: 94px;
  left: 14px;
  right: 14px;
  z-index: 80;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(20, 14, 12, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-drawer[hidden] {
  display: none;
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-drawer a {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--muted);
}

.mobile-drawer a.active {
  background: rgba(242, 216, 180, 0.12);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #2a1c13;
  box-shadow: 0 12px 28px rgba(213, 177, 137, 0.26);
}

.hero-mobile {
  padding: 14px 0 24px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 74vh;
  border: 1px solid var(--line);
  background: #1b1411;
  box-shadow: var(--shadow);
}

.hero-card picture,
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 7, 0.2), rgba(12, 8, 7, 0.92));
}

.hero-card__content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero-card h2,
.section-header h2 {
  font-family: var(--font-display);
  line-height: 1.02;
}

.hero-card h2 {
  font-size: clamp(2.4rem, 10vw, 3.7rem);
}

.hero-card p,
.section-header p,
.menu-card p,
.story-card p,
.contact-card p,
.form-note,
.field label,
.field-error {
  color: var(--muted);
  line-height: 1.65;
}

.stack {
  display: grid;
  gap: 18px;
}

.section {
  padding: 24px 0;
}

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.feature-scroller,
.gallery-scroller,
.review-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.feature-card,
.gallery-card,
.review-card,
.menu-card,
.story-card,
.form-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card,
.review-card,
.form-card,
.contact-card {
  padding: 22px;
}

.feature-card strong,
.review-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.gallery-card,
.story-card__media,
.menu-card__media {
  min-height: 260px;
}

.gallery-card--small {
  min-height: 200px;
}

.menu-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.filter-button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(242, 216, 180, 0.18);
  background: rgba(242, 216, 180, 0.05);
  color: var(--text);
}

.filter-button.active {
  background: rgba(242, 216, 180, 0.16);
}

.menu-list,
.story-list,
.contact-stack {
  display: grid;
  gap: 16px;
}

.menu-card__body,
.story-card__body {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.menu-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.menu-card__tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(242, 216, 180, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
}

.menu-card__price {
  font-family: var(--font-display);
  color: var(--accent-strong);
}

.menu-card.hidden {
  display: none;
}

.form-card form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(242, 216, 180, 0.14);
  background: rgba(11, 8, 7, 0.42);
  color: var(--text);
}

.field select option {
  color: #120d0b;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 86px;
  z-index: 60;
}

.sticky-cta .button {
  width: 100%;
}

.bottom-nav {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(20, 14, 12, 0.98);
  box-shadow: var(--shadow);
}

.bottom-nav a {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 10px 6px;
  border-radius: 16px;
  color: var(--muted);
  font-size: 0.73rem;
}

.bottom-nav a.active {
  background: rgba(242, 216, 180, 0.12);
  color: var(--text);
}

.cookie-bar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 162px;
  z-index: 65;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(22, 15, 12, 0.97);
  box-shadow: var(--shadow);
}

.cookie-bar.hidden {
  display: none;
}

.utility-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
