:root {
  --bg: #0b0a09;
  --surface: #15120f;
  --surface-2: #1a1613;
  --surface-3: #130f0c;
  --text: #f8f2e8;
  --text-soft: #cfbfaa;
  --brand: #dd5d2d;
  --brand-dark: #b7401b;
  --brand-soft: rgba(221, 93, 45, 0.2);
  --accent: #f1aa59;
  --border: #3c3229;
  --focus: #6db6ff;
  --ok: #43c06a;
  --error: #ff6d5e;
  --radius-sm: 0.45rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.2rem;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.3);
  --container: 74rem;
  --header-h: 5.2rem;
  --header-bg: rgba(10, 9, 8, 0.95);
  --header-bg-scrolled: rgba(10, 9, 8, 0.98);
  --header-border: rgba(255, 255, 255, 0.08);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #080706 0%, #11100e 48%, #080706 100%);
  color: var(--text);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.62;
  font-size: clamp(1rem, 0.18vw + 0.96rem, 1.06rem);
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

a {
  color: #ffc091;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.08em;
  transition: color 180ms ease;
}

a:hover {
  color: #ffdcc2;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-family: "Rockwell", "Cambria", "Palatino Linotype", "Georgia", serif;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 5.4vw, 4rem);
}

h2 {
  font-size: clamp(1.58rem, 3.15vw, 2.38rem);
}

h3 {
  font-size: clamp(1.14rem, 2.2vw, 1.44rem);
}

p {
  margin: 0 0 1rem;
}

p,
li {
  overflow-wrap: anywhere;
}

ul,
ol {
  margin: 0;
  padding-left: 1.15rem;
}

.container {
  width: min(var(--container), calc(100% - 1.8rem));
  margin-inline: auto;
}

.narrow {
  max-width: 44rem;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 0.85rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  transform: translateY(-180%);
  z-index: 600;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 150;
  min-height: var(--header-h);
  backdrop-filter: blur(6px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled {
  background: var(--header-bg-scrolled);
  border-bottom-color: var(--header-border);
}

.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: var(--header-h);
  gap: 0.75rem;
  padding-block: 0.35rem 0.4rem;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #0d0b09;
}

.brand-title {
  display: block;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.028em;
  text-transform: uppercase;
}

.brand-tag {
  display: block;
  color: #d6c4ac;
  font-size: 0.71rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.header-call {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 0.55rem;
  border: 1px solid #c99363;
  padding: 0.45rem 0.88rem;
  white-space: nowrap;
  color: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #d35f2f, #b24620);
  box-shadow: none;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.header-call:hover {
  color: #fff;
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.45rem;
  border: 1px solid var(--border);
  background: var(--surface);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.23rem;
}

.nav-toggle span {
  width: 1.25rem;
  height: 2px;
  margin-inline: auto;
  background: #f1e8dc;
}

.site-nav {
  grid-column: 1 / -1;
  display: none;
  margin-bottom: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 0.62rem;
  background: #15120e;
  box-shadow: var(--shadow-sm);
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  display: grid;
  gap: 0.34rem;
}

.site-nav a {
  min-height: 2.9rem;
  display: block;
  padding: 0.68rem 0.94rem;
  border-radius: 0.4rem;
  text-decoration: none;
  color: #f4ecdf;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  font-size: 0.93rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(226, 104, 55, 0.2);
  color: #fff3e7;
}

.section {
  padding-block: clamp(2rem, 4.2vw, 3.4rem);
}

.section-alt {
  background: rgba(16, 14, 12, 0.92);
}

.section-soft {
  background: rgba(19, 16, 13, 0.88);
}

.section-alt,
.section-soft {
  position: relative;
  isolation: isolate;
}

.section-alt::before,
.section-soft::before {
  display: none;
}

.eyebrow {
  margin-bottom: 0.42rem;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.section-head {
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: clamp(1.3rem, 2.2vw, 1.95rem);
  text-align: center;
}

.section-head h2 {
  margin-bottom: 0.82rem;
}

.section-head p,
.lead,
.muted {
  color: var(--text-soft);
}

.hero {
  padding-block: clamp(1.25rem, 3.8vw, 2.2rem) clamp(1.9rem, 4.5vw, 3.2rem);
}

.hero-home {
  padding-block: clamp(1.05rem, 3.3vw, 2.2rem) clamp(1.9rem, 4.7vw, 3.35rem);
}

.hero-home .hero-copy h1 {
  font-size: clamp(2.15rem, 5.3vw, 3.95rem);
}

.hero-home .hero-copy p {
  color: #e8d9c4;
  max-width: 55ch;
}

.hero-home .hero-media {
  min-height: clamp(14rem, 55vw, 21rem);
  border: 1px solid rgba(235, 197, 158, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: #100d0b;
  overflow: hidden;
}

.hero-home .hero-media img {
  object-fit: cover;
}

.hero-wrap {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.hero-wrap-single {
  grid-template-columns: minmax(0, 1fr) !important;
}

.hero-copy {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: none;
}

.hero-copy {
  padding: clamp(1.1rem, 2.3vw, 1.7rem);
}

.hero-copy h1 {
  margin-bottom: 0.68rem;
  font-size: clamp(1.95rem, 4.2vw, 3rem);
}

.hero-copy p {
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.45vw, 1.06rem);
}

.hero-copy p,
.hero-copy ul {
  max-width: 58ch;
}

.hero-list {
  margin-top: 0.9rem;
  color: var(--text-soft);
  padding-left: 1rem;
}

.hero-media {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: clamp(14rem, 40vw, 21rem);
  display: grid;
  align-items: center;
  background: transparent;
  box-shadow: none;
}

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

.hero-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.actions {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 0.55rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.9rem;
  padding: 0.64rem 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #db6232, #bf4a23);
  box-shadow: 0 6px 16px rgba(174, 67, 32, 0.26);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(174, 67, 32, 0.3);
}

.btn-outline {
  color: #f2ccab;
  border-color: #b48b67;
  background: rgba(255, 255, 255, 0.01);
}

.btn-outline:hover {
  color: #fff;
  border-color: #d8b79a;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  color: #ffd8ba;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  color: #fff;
  border-color: #b29f8a;
  transform: translateY(-1px);
}

.grid {
  display: grid;
  gap: clamp(0.95rem, 1.8vw, 1.25rem);
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: clamp(0.95rem, 1.45vw, 1.2rem);
  box-shadow: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.card:hover {
  border-color: rgba(242, 162, 74, 0.32);
  background: #181410;
}

.card p:last-child,
.card ul:last-child,
.card ol:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  gap: clamp(0.95rem, 1.9vw, 1.25rem);
  align-items: center;
}

.split-menu-preview {
  align-items: stretch;
}

.media {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: transparent;
  box-shadow: none;
}

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

.brochure-media {
  aspect-ratio: auto;
  padding: 0;
  background: transparent;
}

.brochure-media img {
  height: auto;
  max-height: min(38rem, 78vh);
  margin-inline: auto;
  object-fit: contain;
  background: transparent;
}

.brochure-awards-media img {
  max-height: min(26rem, 62vh);
}

.brochure-owner-media img {
  max-height: min(36rem, 78vh);
}

.brochure-specializing-media img {
  max-height: min(34rem, 72vh);
}

.brochure-badge-media {
  margin-top: 0.95rem;
}

.brochure-badge-media img {
  max-height: min(20rem, 46vh);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  min-height: 2.25rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  color: #f0dfcc;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}

.pill:hover {
  color: #fff;
  border-color: #b9a993;
}

.notice {
  margin: 0.9rem 0;
  padding: 0.72rem 0.9rem;
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  background: rgba(242, 162, 74, 0.1);
  color: #f6d3ab;
}

.cta-band {
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  padding: clamp(1rem, 2.3vw, 1.5rem);
  background: var(--surface-2);
  box-shadow: none;
  display: grid;
  gap: 0.9rem;
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  margin-bottom: 0;
}

.stat-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.stat {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  padding: 0.95rem;
}

.stat strong {
  display: block;
  margin-bottom: 0.3rem;
}

.testimonials-grid {
  align-items: stretch;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  margin-bottom: 0.75rem;
  color: #e5d7c3;
  font-size: 0.98rem;
}

.testimonial-card h3 {
  margin-bottom: 0;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-toolbar {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.menu-quick-scan {
  margin-bottom: 0.65rem;
  border: 1px solid rgba(241, 170, 89, 0.22);
  border-radius: 0.78rem;
  background: #15110d;
  padding: 0.58rem 0.66rem;
}

.menu-quick-scan h2 {
  margin-bottom: 0.28rem;
  font-size: clamp(0.96rem, 1.45vw, 1.16rem);
}

.menu-quick-scan ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.32rem;
}

.menu-quick-scan li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.42rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  background: #1a140f;
}

.menu-quick-scan li:last-child {
  margin-bottom: 0;
}

.menu-quick-scan li span {
  color: #efe3d2;
  font-weight: 600;
  font-size: 0.83rem;
}

.menu-quick-scan li strong {
  color: #ffd3ad;
  white-space: nowrap;
  font-size: 0.82rem;
}

#menu-jump-links {
  position: sticky;
  top: calc(var(--header-h) + 0.5rem);
  z-index: 40;
  border: 1px solid rgba(241, 170, 89, 0.2);
  border-radius: 0.7rem;
  background: rgba(18, 14, 11, 0.96);
  padding: 0.4rem;
  box-shadow: none;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
}

.menu-poster {
  margin: 1rem 0 0;
  border: 1px solid rgba(241, 170, 89, 0.22);
  border-radius: 0.85rem;
  background: #110d0a;
  overflow: hidden;
}

.menu-poster picture {
  display: grid;
  place-items: center;
  padding: 0.65rem;
  background: #0e0b09;
}

.menu-poster img {
  width: auto;
  height: auto;
  max-width: min(100%, 34rem);
  max-height: min(70vh, 42rem);
  margin-inline: auto;
  display: block;
  object-fit: contain;
}

.menu-poster figcaption {
  margin: 0;
  padding: 0.56rem 0.7rem;
  border-top: 1px solid var(--border);
  color: #d8c6b0;
  font-size: 0.84rem;
  text-align: center;
}

.menu-category {
  margin-top: 0;
  border: 1px solid var(--border);
  border-radius: 0.74rem;
  background: linear-gradient(180deg, #17130f 0%, #14110d 100%);
  overflow: hidden;
  box-shadow: none;
}

.menu-category-header {
  padding: 0.68rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.menu-category-header p:last-child {
  margin-bottom: 0;
}

.menu-category-header h2 {
  margin-bottom: 0.06rem;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.menu-category-header p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #c5b49f;
}

.menu-category-summary .menu-category-header {
  border-bottom: 0;
}

.menu-item-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  padding: 0.62rem;
}

.menu-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  padding: 0.56rem 0.62rem;
  transition: border-color 180ms ease;
}

.menu-item h3 {
  margin-bottom: 0.3rem;
  font-size: 0.96rem;
}

.menu-item p:not(.menu-note) {
  display: block;
  margin-bottom: 0.34rem;
  color: #cdbca8;
  font-size: 0.82rem;
}

.menu-note {
  display: block;
  margin-top: 0.3rem;
  margin-bottom: 0;
  color: #d7c6b1;
  font-size: 0.8rem;
}

.menu-bullet-list {
  margin: 0.28rem 0 0;
  padding-left: 1.1rem;
  color: #dfcfbd;
  font-size: 0.82rem;
  display: grid;
  gap: 0.16rem;
}

.menu-bullet-list li {
  margin: 0;
}

.menu-footer-blurb {
  margin-top: 0.8rem;
}

.menu-footer-blurb #menu-footer-copy {
  display: grid;
  gap: 0.35rem;
}

.menu-footer-blurb #menu-footer-copy p {
  margin: 0;
}

.menu-footer-blurb #menu-footer-copy p:first-child {
  color: #f6c89f;
  font-weight: 700;
}

.menu-item:hover {
  border-color: rgba(242, 162, 74, 0.38);
}

.menu-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.menu-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.54rem;
  padding: 0.26rem 0;
  border-top: 1px dashed rgba(197, 171, 142, 0.25);
  font-size: 0.83rem;
}

.menu-price-list li:first-child {
  border-top: 1px solid rgba(197, 171, 142, 0.35);
}

.menu-price-list li span {
  color: #eadfce;
}

.menu-price-list li strong {
  color: #ffd0a4;
  white-space: nowrap;
  font-size: 0.84rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.gallery-card {
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.gallery-card button {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.gallery-card picture {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-card button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: transparent;
  transition: none;
}

.video-grid {
  align-items: start;
  max-width: min(72rem, 100%);
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.video-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: clamp(0.75rem, 1.4vw, 1rem);
}

.video-card h3 {
  margin-bottom: 0.2rem;
}

.video-card-head {
  margin-bottom: 0.55rem;
}

.video-card-head p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.video-card video:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(4, 3, 2, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-dialog {
  width: min(72rem, 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #100d0a;
}

.lightbox-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 0.85rem;
}

.lightbox-top p {
  margin: 0;
}

.lightbox-controls {
  display: inline-flex;
  gap: 0.35rem;
}

.lightbox-nav,
.lightbox-close {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.2rem;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox picture,
.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.contact-grid {
  display: grid;
  gap: 0.95rem;
  align-items: start;
}

.contact-card,
.form-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(0.95rem, 1.9vw, 1.28rem);
  box-shadow: none;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.contact-list li {
  padding-bottom: 0.72rem;
  border-bottom: 1px dashed var(--border);
}

.contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  gap: 0.82rem;
}

.field {
  display: grid;
  gap: 0.34rem;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0.52rem;
  border: 1px solid #4a3d31;
  background: #120f0c;
  color: var(--text);
  font: inherit;
  padding: 0.62rem 0.68rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(222, 90, 42, 0.24);
}

textarea {
  min-height: 8.4rem;
  resize: vertical;
}

.field-error {
  min-height: 1.15rem;
  color: var(--error);
  font-size: 0.9rem;
}

.status {
  margin-bottom: 0.8rem;
  border-radius: 0.5rem;
  padding: 0.62rem 0.75rem;
  background: #16120e;
}

.status-error {
  color: #ffd2cb;
  border-left: 4px solid var(--error);
  background: rgba(255, 109, 94, 0.15);
}

.status-success {
  color: #ccf0d8;
  border-left: 4px solid var(--ok);
  background: rgba(67, 192, 106, 0.14);
}

.menu-load-warning {
  margin-bottom: 1.1rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.process-list {
  display: grid;
  gap: 0.72rem;
}

.process-list li {
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 0.72rem;
  background: var(--surface);
}

.small {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.menu-snapshot {
  align-self: stretch;
}

.menu-snapshot h3 {
  margin-bottom: 0.8rem;
}

.menu-snapshot-list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  border-top: 1px solid var(--border);
}

.menu-snapshot-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-snapshot-list span {
  color: #f1e6d8;
  font-weight: 600;
}

.menu-snapshot-list strong {
  color: #ffd2ac;
  white-space: normal;
  text-align: right;
  max-width: 20ch;
}

.site-footer {
  margin-top: clamp(2.6rem, 6vw, 5rem);
  border-top: 1px solid var(--border);
  background: #0a0807;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  padding: 1.8rem 0 1.3rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.38rem;
}

.footer-bottom {
  border-top: 1px solid rgba(180, 160, 138, 0.3);
  color: #c6b49f;
  font-size: 0.92rem;
  padding: 0.78rem 0 1rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 360ms ease, transform 360ms ease;
  will-change: opacity, transform;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="menu"] .hero {
  padding-block: clamp(0.75rem, 2.2vw, 1.2rem) clamp(1rem, 2.7vw, 1.55rem);
}

body[data-page="menu"] .hero .actions {
  margin-top: 0.6rem;
}

body[data-page="menu"] .section {
  padding-block: clamp(1.1rem, 2.5vw, 1.85rem);
}

body[data-page="menu"] .menu-poster {
  margin: 0 0 1rem;
}

body[data-page="menu"] .menu-poster picture {
  padding: 0.45rem;
}

body[data-page="menu"] .menu-poster img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - var(--header-h) - 5rem);
  object-fit: contain;
}

#menu-categories {
  display: grid;
  gap: 0.5rem;
}

@media (max-width: 33rem) {
  .brand-tag {
    display: none;
  }

  .header-call {
    font-size: 0.91rem;
    padding-inline: 0.64rem;
  }

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

@media (max-width: 25rem) {
  .brand img {
    width: 2.65rem;
    height: 2.65rem;
  }

  .brand-title {
    font-size: 0.97rem;
  }

  .header-call span {
    display: none;
  }
}

@media (max-width: 23rem) {
  .header-call {
    font-size: 0.82rem;
    padding-inline: 0.56rem;
  }
}

@media (min-width: 48rem) {
  .section-head {
    margin-inline: 0;
    text-align: left;
  }

  .hero-home .hero-wrap {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(0.95rem, 2vw, 1.65rem);
  }

  .hero-home .hero-media {
    min-height: 0;
    height: 100%;
  }

  .hero-wrap,
  .split,
  .contact-grid,
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .cta-band {
    grid-template-columns: 1.5fr auto;
    align-items: center;
  }

}

@media (min-width: 40rem) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 64rem) {
  .nav-toggle {
    display: none;
  }

  .header-row {
    grid-template-areas: "brand nav tools";
    grid-template-columns: minmax(13.5rem, 1fr) auto minmax(13.5rem, 1fr);
    align-items: center;
    gap: clamp(1rem, 1.8vw, 1.65rem);
    padding-block: 0.45rem 0.5rem;
  }

  .brand {
    grid-area: brand;
    grid-row: 1;
    justify-self: start;
    align-self: center;
  }

  .site-nav {
    display: block;
    grid-area: nav;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    width: auto;
    max-width: none;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.48rem, 0.95vw, 0.85rem);
    padding: 0;
  }

  .site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 2.6rem;
    padding-block: 0;
    padding-inline: 0.98rem;
    line-height: 1.1;
    font-size: 0.89rem;
    border-radius: 0.45rem;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.44rem;
    height: 2px;
    background: #f2a24a;
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a:hover::after,
  .site-nav a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(242, 162, 74, 0.08);
    color: #fff;
  }

  .header-tools {
    grid-area: tools;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    width: 100%;
    justify-content: flex-end;
  }

  .header-call {
    min-height: 2.6rem;
    padding-inline: 0.88rem;
    font-size: 0.82rem;
  }
}

@media (min-width: 56rem) {
  #menu-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #menu-categories .menu-category {
    margin-top: 0;
  }

  #menu-categories #sides {
    grid-column: 1 / -1;
  }
}

@media (min-width: 62rem) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .menu-quick-scan ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 82rem) {
  .gallery-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-contrast: more) {
  :root {
    --text-soft: #e8dece;
    --border: #9f8f7f;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
