:root {
  --brown-900: #1a0f0a;
  --brown-800: #2c1810;
  --brown-700: #4a2c1a;
  --brown-600: #6b3f24;
  --brown-500: #8b5e3c;
  --brown-400: #a67c5c;
  --brown-300: #c4a287;
  --brown-200: #e0cdbc;
  --brown-100: #f0e4d8;
  --brown-50: #fdf6ed;
  --gold: #c9935a;
  --gold-light: #d4a76a;
  --gold-dark: #b07d48;
  --cream: #fdf6ed;
  --cream-light: #fffaf5;
  --white: #ffffff;
  --black: #0d0806;
  --line: rgba(26, 15, 10, 0.1);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 2px 8px rgba(26, 15, 10, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 15, 10, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 15, 10, 0.15);
  --shadow-xl: 0 32px 80px rgba(26, 15, 10, 0.2);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-w: 1120px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  color: var(--brown-900);
  background: var(--cream-light);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(var(--max-w), calc(100% - 32px));
  margin: 0 auto;
}

.label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading.center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-heading.center h2 {
  margin-bottom: 16px;
}

.section-heading.center p:last-child {
  color: var(--brown-500);
  font-size: 17px;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

h1, h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(36px, 5vw, 60px);
}

h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--brown-500);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brown-800), var(--brown-700));
  box-shadow: 0 8px 28px rgba(74, 44, 26, 0.3);
}

.btn-primary::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
}

.btn-primary:hover {
  box-shadow: 0 14px 40px rgba(74, 44, 26, 0.35);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  color: var(--brown-800);
  border: 2px solid var(--line);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(26, 15, 10, 0.04);
}

.btn-secondary::after {
  background: rgba(74, 44, 26, 0.04);
}

.btn-secondary:hover {
  border-color: var(--brown-400);
  box-shadow: 0 8px 24px rgba(26, 15, 10, 0.07);
}

.btn-secondary:hover::after {
  opacity: 1;
}

.btn-outline-light {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(26, 15, 10, 0.15);
}

.btn-outline-light::after {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 28px rgba(26, 15, 10, 0.2);
}

.btn-outline-light:hover::after {
  opacity: 1;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  font-size: 20px;
}

/* ─── HEADER ─── */

.header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  width: min(var(--max-w), calc(100% - 32px));
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.82);
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 20px rgba(26, 15, 10, 0.08);
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(255, 250, 245, 0.95);
  box-shadow: 0 8px 32px rgba(26, 15, 10, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--brown-700), var(--brown-800));
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  line-height: 1;
}

.logo-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.logo-text small {
  display: block;
  color: var(--brown-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.navbar a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--brown-500);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s, background 0.2s;
}

.navbar a:hover {
  color: var(--brown-900);
  background: rgba(74, 44, 26, 0.06);
}

.header-order {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brown-800), var(--brown-700));
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(74, 44, 26, 0.2);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.header-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 44, 26, 0.3);
}

.nav-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--brown-800);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}

.nav-btn span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ─── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(26, 15, 10, 0.82) 0%, rgba(44, 24, 16, 0.65) 50%, rgba(26, 15, 10, 0.3) 100%),
    linear-gradient(0deg, rgba(13, 8, 6, 0.6) 0%, transparent 60%);
}

.hero-content {
  width: min(800px, calc(100% - 48px));
  margin: 0 auto;
  padding: 140px 0 140px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.hero-desc {
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-stats {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  z-index: 1;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll {
  position: absolute;
  bottom: 100px;
  right: 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── ABOUT ─── */

.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text > p {
  margin-bottom: 16px;
  font-size: 17px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(26, 15, 10, 0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-feature:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 15, 10, 0.06);
}

.about-feature span {
  font-size: 18px;
}

.about-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 400px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brown-200), var(--brown-100));
  color: var(--brown-500);
  text-align: center;
}

.about-image-placeholder span {
  font-size: 64px;
}

.about-image-placeholder p {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--brown-400);
}

/* ─── SIGNATURE ─── */

.signature {
  padding: 100px 0;
  background: var(--white);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sig-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sig-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sig-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--cream), #fcf3e8);
  box-shadow: 0 8px 32px rgba(201, 147, 90, 0.15);
}

.sig-card.featured:hover {
  box-shadow: 0 12px 40px rgba(201, 147, 90, 0.2);
}

.sig-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.sig-card h3 {
  margin-bottom: 10px;
}

.sig-card p {
  font-size: 15px;
  margin-bottom: 20px;
}

.sig-price {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brown-800);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

/* ─── MENU ─── */

.menu {
  padding: 100px 0;
  background: var(--cream);
}

.menu-controls {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.menu-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brown-900);
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.menu-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 147, 90, 0.12);
}

.menu-search input::placeholder {
  color: var(--brown-300);
}

.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tabs button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--line);
  border-radius: 999px;
  color: var(--brown-500);
  background: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(26, 15, 10, 0.03);
}

.menu-tabs button:hover {
  border-color: var(--brown-300);
  color: var(--brown-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 15, 10, 0.06);
}

.menu-tabs button:active {
  transform: translateY(0) scale(0.97);
}

.menu-tabs button.active {
  color: var(--white);
  border-color: var(--brown-800);
  background: var(--brown-800);
  box-shadow: 0 4px 16px rgba(74, 44, 26, 0.2);
}

.menu-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown-400);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.menu-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  animation: fadeUp 0.4s ease both;
  box-shadow: 0 2px 8px rgba(26, 15, 10, 0.03);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.menu-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 48px rgba(26, 15, 10, 0.1);
  border-color: var(--gold);
}

.menu-card:active {
  transform: translateY(-1px) scale(0.99);
}

.menu-card.featured {
  border-color: rgba(201, 147, 90, 0.3);
  background: linear-gradient(135deg, var(--white), #fcf6ee);
  box-shadow: 0 4px 16px rgba(201, 147, 90, 0.08);
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.menu-card-visual {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  background: var(--cream);
  color: var(--brown-700);
  font-size: 20px;
  font-weight: 800;
}

.menu-card-price {
  color: var(--brown-700);
  font-size: 18px;
  font-weight: 800;
}

.menu-card-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.menu-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.menu-card p {
  font-size: 14px;
  min-height: 60px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.menu-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(201, 147, 90, 0.12);
  color: var(--brown-600);
  font-size: 11px;
  font-weight: 800;
}

.menu-detail-link {
  color: var(--brown-800);
  font-size: 13px;
  font-weight: 800;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.menu-card:hover .menu-detail-link {
  opacity: 1;
}

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

.empty-state strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.empty-state p {
  margin-bottom: 0;
}

/* ─── REVIEWS ─── */

.reviews {
  padding: 100px 0;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-card.highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--cream), #fcf3e8);
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.review-card p {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
  color: var(--brown-900);
  margin-bottom: 20px;
}

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

.review-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--brown-800);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 14px;
}

.review-author span {
  font-size: 12px;
  color: var(--brown-400);
  font-weight: 600;
}

/* ─── CONTACT ─── */

.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 17px;
  margin-bottom: 32px;
}

.contact-items {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item > span {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-item p {
  margin-bottom: 0;
  font-size: 15px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-map {
  display: flex;
}

.map-container {
  position: relative;
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-overlay-link {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  color: var(--brown-800);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.map-overlay-link:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.map-overlay-link span {
  font-size: 18px;
}

/* ─── FOOTER ─── */

.footer {
  padding: 60px 0 32px;
  background: var(--brown-900);
  color: var(--white);
}

.footer .logo .logo-mark {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.footer .logo .logo-text strong {
  color: var(--white);
}

.footer .logo .logo-text small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
  font-size: 15px;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  margin-bottom: 0;
}

/* ─── MOBILE BAR ─── */

.mobile-bar {
  display: none;
}

/* ─── MODAL ─── */

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 8, 6, 0.6);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brown-600);
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--white);
}

.modal-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: linear-gradient(135deg, var(--brown-100), var(--cream));
  font-size: 14px;
  font-weight: 900;
  color: var(--brown-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.modal-body {
  padding: 24px 28px 28px;
}

.modal-body h2 {
  margin-bottom: 12px;
}

.modal-body p {
  font-size: 16px;
  margin-bottom: 24px;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.modal-price {
  font-size: 26px;
  color: var(--brown-700);
  font-weight: 900;
}

.modal-badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(201, 147, 90, 0.12);
  color: var(--brown-600);
  font-size: 13px;
  font-weight: 800;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .navbar {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 8px;
    border-radius: var(--radius-lg);
    background: rgba(255, 250, 245, 0.98);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow-lg);
  }

  .header.nav-open .navbar {
    display: flex;
  }

  .navbar a {
    width: 100%;
    padding: 14px 16px;
  }

  .nav-btn {
    display: flex;
  }

  .header-order {
    display: none;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .header-inner {
    padding: 6px 10px;
  }

  .header {
    top: 10px;
    width: calc(100% - 16px);
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .logo-text strong {
    font-size: 14px;
  }

  .hero-content {
    padding: 120px 0 180px;
    width: calc(100% - 32px);
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-stats {
    gap: 20px;
    bottom: 24px;
  }

  .stat strong {
    font-size: 26px;
  }

  .stat span {
    font-size: 12px;
  }

  .about,
  .signature,
  .menu,
  .reviews,
  .contact {
    padding: 64px 0;
  }

  .signature-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading.center {
    margin-bottom: 32px;
  }

  .sig-card,
  .review-card {
    padding: 24px;
  }

  .review-card p {
    font-size: 20px;
  }

  .about-image-placeholder {
    min-height: 260px;
  }

  .map-container {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px 12px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    background: rgba(255, 250, 245, 0.92);
    backdrop-filter: blur(24px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(26, 15, 10, 0.06);
  }

  .mobile-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px 4px;
    border-radius: 14px;
    font-size: 10px;
    font-weight: 700;
    color: var(--brown-400);
    transition: color 0.2s, background 0.2s, transform 0.2s;
  }

  .mobile-bar a:hover,
  .mobile-bar a:active {
    color: var(--brown-800);
    background: rgba(74, 44, 26, 0.06);
    transform: translateY(-1px);
  }

  .modal-card {
    margin: 16px;
  }

  .modal-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }
}
