:root {
  --emerald: #c85a17;
  --emerald-strong: #a64610;
  --emerald-soft: #fff0e6;
  --gold: #f8dec7;
  --gold-dark: #c85a17;
  --charcoal: #2c2c2c;
  --ink: #2c2c2c;
  --muted: #666666;
  --paper: #fffaf6;
  --linen: #fff1e7;
  --white: #ffffff;
  --border: #efd7c7;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid rgba(200, 90, 23, 0.14);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--emerald);
  text-decoration: none;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.brand span,
.footer-brand span {
  font-size: 1.18rem;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.3s ease, background 0.3s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--emerald-strong);
  color: var(--white);
}

.primary-nav a.active {
  background: var(--emerald);
  color: var(--white);
}

.primary-nav a.active:hover,
.primary-nav a.active:focus-visible {
  background: var(--emerald-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--emerald);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: clamp(540px, 78vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(72, 39, 22, 0.78), rgba(166, 70, 16, 0.46), rgba(44, 44, 44, 0.18));
}

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

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 78px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: 4.35rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: 2.5rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.18rem;
  line-height: 1.28;
}

.hero-text {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--emerald-strong);
  border-color: var(--emerald-strong);
}

.btn-secondary {
  background: var(--white);
  border-color: rgba(200, 90, 23, 0.24);
  color: var(--emerald);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--emerald-strong);
  color: var(--emerald-strong);
}

.contact-strip {
  background: var(--emerald);
  color: var(--white);
}

.strip-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 12px 0;
  font-size: 0.92rem;
}

.strip-inner a,
.strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.strip-inner i {
  color: var(--gold);
}

.section,
.split-section,
.cta-band,
.page-hero,
.map-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

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

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

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
}

.service-grid,
.value-grid,
.feature-list,
.service-detail-grid,
.menu-notes {
  display: grid;
  gap: 20px;
}

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

.service-card,
.value-card,
.service-detail-card,
.feature-list > div,
.menu-notes article,
.contact-panel,
.quote-form {
  border: 1px solid rgba(200, 90, 23, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 26px;
}

.service-card i,
.feature-list i,
.menu-notes i {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--emerald-soft);
  color: var(--emerald);
  font-size: 1.25rem;
}

.service-card p,
.service-detail-card p,
.value-card p,
.feature-list p,
.menu-notes p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 42px;
  padding: 80px 0;
}

.split-reverse .split-copy {
  order: 2;
}

.split-copy p {
  color: var(--muted);
}

.split-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: min(520px, 62vw);
  min-height: 360px;
  object-fit: cover;
}

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: var(--ink);
}

.check-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold-dark);
}

.marquee-gallery {
  overflow: hidden;
  padding: 8px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 38s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track figure {
  width: 248px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.marquee-track img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.marquee-track figcaption {
  padding: 12px 14px;
  color: var(--emerald);
  font-weight: 800;
  font-size: 0.9rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 80px;
  padding: 34px;
  border-radius: 8px;
  background: var(--emerald);
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band .btn-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--emerald);
}

.cta-band .btn-primary:hover,
.cta-band .btn-primary:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--emerald-strong);
}

.cta-band p {
  max-width: 780px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 42px;
  padding: 76px 0 46px;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.page-hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

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

.value-card {
  padding: 26px;
}

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

.feature-list > div {
  padding: 26px;
}

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

.service-detail-card {
  padding: 28px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--emerald);
  color: var(--gold);
  font-size: 1.2rem;
}

.service-detail-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--ink);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(200, 90, 23, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.menu-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.menu-table caption {
  padding: 18px 20px;
  color: var(--emerald);
  font-weight: 800;
  text-align: left;
}

.menu-table th,
.menu-table td {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.menu-table thead th {
  background: var(--emerald);
  color: var(--white);
}

.menu-table tbody th {
  color: var(--emerald);
}

.menu-table tbody tr:nth-child(even) {
  background: #fff5ee;
}

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

.menu-notes article {
  padding: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--linen);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(10, 20, 18, 0.86);
}

.lightbox[hidden] {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox img {
  max-height: 78vh;
  max-width: min(980px, 94vw);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.lightbox p {
  margin: 16px 0 0;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-panel,
.quote-form {
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list p {
  display: grid;
  grid-template-columns: 26px minmax(74px, max-content) minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  margin: 0;
}

.contact-list i {
  color: var(--gold-dark);
  line-height: 1.7;
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form h2,
.contact-panel h2 {
  font-size: 1.7rem;
}

.quote-form label {
  color: var(--emerald);
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fffdf9;
  color: var(--ink);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(200, 162, 75, 0.42);
  border-color: var(--gold);
}

.quote-form textarea {
  resize: vertical;
}

.map-section {
  margin-bottom: 80px;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.qr-menu-section {
  padding-top: 64px;
}

.qr-menu-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.qr-menu-toolbar h2 {
  margin-top: 0;
}

.menu-status {
  margin-bottom: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(200, 90, 23, 0.16);
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.menu-status.is-error {
  border-color: rgba(166, 70, 16, 0.32);
  color: var(--emerald-strong);
}

.menu-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.menu-category-tabs button {
  min-height: 38px;
  border: 1px solid rgba(200, 90, 23, 0.22);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  padding: 8px 13px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.menu-category-tabs button:hover,
.menu-category-tabs button:focus-visible,
.menu-category-tabs button.active {
  border-color: var(--emerald);
  background: var(--emerald);
  color: var(--white);
}

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

.live-menu-card,
.admin-login,
.menu-edit-form,
.admin-list-panel,
.admin-food-row {
  border: 1px solid rgba(200, 90, 23, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.live-menu-card {
  overflow: hidden;
}

.menu-card-media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--linen);
  color: var(--emerald);
  font-size: 2rem;
}

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

.menu-card-body {
  padding: 20px;
}

.menu-category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 6px;
  background: var(--emerald-soft);
  color: var(--emerald-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.menu-card-body p {
  margin: 10px 0 0;
  color: var(--muted);
}

.menu-price {
  display: inline-flex;
  margin-top: 16px;
  color: var(--emerald);
  font-size: 1.16rem;
}

.admin-login {
  max-width: 560px;
  padding: 30px;
}

.admin-pin-form,
.menu-edit-form {
  display: grid;
  gap: 12px;
}

.admin-pin-form label,
.menu-edit-form label {
  color: var(--charcoal);
  font-weight: 800;
}

.admin-pin-form input,
.menu-edit-form input,
.menu-edit-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fffdf9;
  color: var(--ink);
}

.admin-pin-form input:focus,
.menu-edit-form input:focus,
.menu-edit-form textarea:focus {
  outline: 2px solid rgba(200, 90, 23, 0.24);
  border-color: var(--emerald);
}

.admin-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: start;
}

.menu-edit-form,
.admin-list-panel {
  padding: 24px;
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
}

.switch-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}

.switch-line input {
  width: 20px;
  height: 20px;
  accent-color: var(--emerald);
}

.btn-small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.88rem;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-search-box {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.admin-search-box label {
  color: var(--charcoal);
  font-weight: 800;
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap i {
  position: absolute;
  left: 13px;
  top: 50%;
  color: var(--emerald);
  transform: translateY(-50%);
  pointer-events: none;
}

.search-input-wrap input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 13px 12px 42px;
  background: #fffdf9;
  color: var(--ink);
}

.search-input-wrap input:focus {
  outline: 2px solid rgba(200, 90, 23, 0.24);
  border-color: var(--emerald);
}

.admin-food-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: 18px;
}

.food-select {
  display: flex;
  align-items: flex-start;
  padding-top: 3px;
}

.food-select input,
.bulk-select-line input {
  width: 20px;
  height: 20px;
  accent-color: var(--emerald);
}

.bulk-select-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 90, 23, 0.14);
  border-radius: 6px;
  background: var(--linen);
}

.bulk-select-line label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--charcoal);
  font-weight: 800;
}

.bulk-select-line strong {
  color: var(--emerald);
  font-size: 0.92rem;
}

.admin-food-row p {
  margin: 6px 0 0;
  color: var(--muted);
}

.food-state {
  display: inline-flex;
  margin-top: 10px;
  padding: 4px 9px;
  border-radius: 6px;
  background: var(--emerald-soft);
  color: var(--emerald-strong);
  font-weight: 800;
  font-size: 0.78rem;
}

.admin-food-row.is-passive {
  opacity: 0.72;
}

.admin-food-row.is-passive .food-state {
  background: #f0f0f0;
  color: var(--muted);
}

.admin-food-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  border: 1px solid rgba(200, 90, 23, 0.22);
  border-radius: 6px;
  background: var(--white);
  color: var(--emerald);
  cursor: pointer;
  font-weight: 800;
  padding: 7px 10px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.admin-action:hover,
.admin-action:focus-visible {
  border-color: var(--emerald-strong);
  background: var(--emerald-strong);
  color: var(--white);
}

.admin-action.danger {
  color: #9e2f1f;
}

.btn:disabled,
.admin-action:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.admin-empty {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.84);
  padding: 44px 0 24px;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
}

.site-footer address {
  font-style: normal;
  line-height: 1.9;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1400;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  text-decoration: none;
  font-size: 1.75rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #1ebe5d;
  transform: translateY(-2px);
}

:focus-visible {
  outline: 3px solid rgba(200, 162, 75, 0.65);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .primary-nav a {
    padding-inline: 9px;
    font-size: 0.86rem;
  }

  .service-grid,
  .value-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1px solid rgba(200, 90, 23, 0.14);
    transition: max-height 0.25s ease;
  }

  .site-header.nav-open .primary-nav {
    max-height: 520px;
  }

  .primary-nav ul {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    gap: 8px;
    padding: 14px 0 18px;
  }

  .primary-nav a {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 620px;
  }

  .hero-media::after {
    background: rgba(92, 53, 28, 0.66);
  }

  .hero-content {
    padding: 74px 0 58px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .page-hero,
  .split-section,
  .contact-layout,
  .footer-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 48px;
  }

  .split-reverse .split-copy {
    order: 0;
  }

  .split-image img,
  .page-hero-image img {
    height: 340px;
    min-height: 300px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-list p {
    grid-template-columns: 24px 1fr;
  }

  .contact-list strong {
    grid-column: 2;
  }

  .contact-list a,
  .contact-list p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-muted {
    padding-inline: 16px;
  }

  .service-grid,
  .value-grid,
  .feature-list,
  .service-detail-grid,
  .menu-notes,
  .gallery-grid,
  .live-menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cta-band,
  .contact-panel,
  .quote-form,
  .admin-login,
  .menu-edit-form,
  .admin-list-panel {
    padding: 24px;
  }

  .qr-menu-toolbar,
  .form-head,
  .admin-food-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .food-select {
    align-items: center;
    padding-top: 0;
  }

  .qr-menu-toolbar,
  .form-head,
  .admin-toolbar-actions {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-food-actions {
    justify-content: stretch;
  }

  .admin-action {
    flex: 1 1 100%;
  }

  .gallery-grid {
    gap: 14px;
  }

  .map-section iframe {
    height: 340px;
  }
}

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