:root {
  --ink: #251f20;
  --muted: #695f5d;
  --paper: #ffffff;
  --cream: #f5f5f3;
  --teal: #2b858c;
  --teal-deep: #226b72;
  --aqua: #55c1c9;
  --red: #ee1c25;
  --red-deep: #c9131e;
  --line: rgba(37, 31, 32, 0.14);
  --shadow: 0 18px 54px rgba(37, 31, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, rgba(85, 193, 201, 0.09), rgba(255, 255, 255, 0) 430px),
    var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif !important;
  font-weight: 600;
  
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 98px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 20px;
/*  color: var(--red); */
color: var(--teal-deep);
}

.brand small {
  color: var(--teal-deep);
  margin-top: 3px;
  font-weight: 600;
}

.category-nav {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 13px;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.7);
}

.category-nav a[aria-current="true"],
.category-nav a:focus-visible,
.category-nav a:hover {
  border-color: rgba(238, 28, 37, 0.5);
  color: var(--red);
  background: #fff;
}

main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.hero {
  min-height: auto;
  display: block;
  padding: clamp(22px, 4vw, 48px) 0 28px;
}

.hero-copy {
  display: none;
}

.eyebrow,
.section-heading p {
  margin: 0 0 9px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
  font-size: 28px !important;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
}

.hero-copy > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero > img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(37, 31, 32, 0.08);
  background: #fff;
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 32px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
}

.notice span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.notice strong {
  color: var(--ink);
  font-size: 15px;
}

.menu-section {
  scroll-margin-top: 128px;
  padding: 24px 0 46px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 16px;
}

.menu-card {
  width: 100%;
  padding: 0;
  border: 1px solid rgba(37, 31, 32, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(37, 31, 32, 0.12);
  cursor: zoom-in;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.menu-card:focus-visible,
.menu-card:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 28, 37, 0.42);
  box-shadow: 0 18px 48px rgba(37, 31, 32, 0.2);
  outline: none;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.site-footer {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 8px 0 36px;
  color: var(--muted);
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--red);
  font-weight: 900;
}

.lightbox {
  width: min(1120px, calc(100% - 22px));
  max-height: calc(100dvh - 22px);
  padding: 0;
  border: 1px solid rgba(37, 31, 32, 0.2);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: calc(100dvh - 82px);
  object-fit: contain;
  background: #fff;
}

.lightbox figcaption {
  padding: 12px 48px 13px 14px;
  color: var(--muted);
  font-weight: 800;
}

.close-button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(37, 31, 32, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

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

  .brand-logo {
    width: 82px;
    height: 60px;
  }

  .brand strong {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 26px;
  }

  .hero-copy {
    display: block;
    max-width: none;
  }

  .notice,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .menu-card {
    transition: none;
  }
}
