@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300;400;500;700&display=swap");

:root {
  --page-bg: #f4efe8;
  --paper: #ffffff;
  --ink: #2a2a28;
  --line: #2a2a28;
  --title-bg: #e1d7c3;
  --vegan: #a8d186;
  --spicy: #c26b6b;
  --muted-ink: rgba(42, 42, 40, 0.68);
  --control-muted: rgba(42, 42, 40, 0.55);
  --item-hover: rgba(42, 42, 40, 0.05);
  --modal-overlay: rgba(0, 0, 0, 0.7);
  --modal-caption: rgba(42, 42, 40, 0.82);
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page-bg: #151311;
  --paper: #211d18;
  --ink: #f3e8d5;
  --line: #b9ab92;
  --title-bg: #2c261f;
  --muted-ink: rgba(243, 232, 213, 0.74);
  --control-muted: rgba(243, 232, 213, 0.62);
  --item-hover: rgba(243, 232, 213, 0.08);
  --modal-overlay: rgba(0, 0, 0, 0.82);
  --modal-caption: rgba(243, 232, 213, 0.86);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.45;
}

html.has-modal-open,
body.has-modal-open {
  overflow: hidden;
  overscroll-behavior: contain;
}

.container {
  width: min(1240px, 100% - 2rem);
  margin: 0 auto;
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-inner {
  width: min(1240px, 100% - 2rem);
  margin: 0 auto;
  border-top: 4px solid var(--line);
  border-bottom: 4px solid var(--line);
  padding: 1.6rem 0;
  text-align: center;
}

.hero-title {
  margin: 0;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
}

html[data-theme="dark"] .hero-logo {
  /* warm tone to match --ink (#f3e8d5), consistent with banquet CTA */
  filter: invert(1) brightness(1.08) sepia(0.12) saturate(1.2);
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0 0 0.95rem;
}

.menu-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  border: 3px solid var(--line);
  background: var(--paper);
  color: var(--control-muted);
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  min-height: 3.4rem;
  padding: 0 0.8rem;
  cursor: pointer;
  white-space: normal;
  text-align: center;
}

.menu-tab-btn.is-active {
  color: var(--ink);
  font-weight: 700;
}

.menu-tab-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.section-tabs-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 45;
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--page-bg);
  border-top: 1px solid color-mix(in srgb, var(--line) 16%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 16%, transparent);
  pointer-events: none;
  visibility: hidden;
  transform: translateY(calc(-100% - env(safe-area-inset-top, 0px)));
  opacity: 0;
  transition: transform 180ms var(--ease-out-strong), opacity 160ms ease-out;
}

.section-tabs-sticky.is-revealed {
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.section-tabs-sticky[hidden] {
  display: none;
}

.section-tabs {
  display: flex;
  align-items: stretch;
  gap: 0.55rem;
  position: relative;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.55rem 0 0.65rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.section-tabs::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.section-tab-btn {
  flex: 0 0 auto;
  border: 2px solid var(--line);
  background: var(--paper);
  color: var(--control-muted);
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  min-height: 2.7rem;
  padding: 0.35rem 0.9rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition:
    color 160ms ease-out,
    border-color 180ms var(--ease-out-strong),
    background-color 180ms var(--ease-out-strong),
    transform 120ms ease-out;
}

.section-tab-btn.is-active {
  color: var(--ink);
  font-weight: 600;
  background: var(--title-bg);
  border-color: var(--ink);
}

.section-tab-btn:active {
  transform: scale(0.98);
}

.section-tab-btn:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: 2px;
}

.section-tabs-indicator {
  position: absolute;
  left: 0;
  bottom: 0.42rem;
  width: 1px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  opacity: var(--section-tabs-indicator-opacity, 0);
  pointer-events: none;
  transform-origin: left center;
  transform: translateX(var(--section-tabs-indicator-x, 0px)) scaleX(var(--section-tabs-indicator-scale, 0));
  transition:
    transform 180ms var(--ease-in-out-strong),
    opacity 140ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .section-tabs-sticky,
  .section-tab-btn,
  .section-tabs-indicator {
    transition: none;
  }
}

@supports ((backdrop-filter: blur(6px)) or (-webkit-backdrop-filter: blur(6px))) {
  .section-tabs-sticky {
    background: color-mix(in srgb, var(--page-bg) 86%, transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}


.top-controls {
  display: contents;
}

/* --breakpoint-mobile: 900px (var not supported in media queries) */
@media (max-width: 900px) {
  .top-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding-bottom: 24px;
  }

  .top-controls .toolbar {
    order: -1;
  }

  .top-controls .menu-tabs {
    order: 0;
  }

  .top-controls .menu-tabs,
  .top-controls .toolbar {
    width: 100%;
    min-width: 0;
  }

  .top-controls .menu-tabs {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding-bottom: 0;
  }

  .top-controls .toolbar .switcher {
    min-width: 0;
  }

  .top-controls .toolbar-actions {
    display: flex;
    width: 100%;
    gap: 0.6rem;
    min-width: 0;
  }

  .menu-tabs {
    padding-bottom: 0;
  }

  .menu-tab-btn {
    min-height: 3.4rem;
    font-size: 0.95rem;
  }

  .menu-tabs.tabs-count-3 .menu-tab-btn:first-child,
  .menu-tabs[data-tabs-count="3"] .menu-tab-btn:first-child {
    grid-column: 1 / -1;
  }

  .toolbar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.6rem;
    padding: 0;
    padding-bottom: 24px;
  }

  .top-controls .toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-column: 1 / -1;
    gap: 0.6rem;
    padding: 0;
  }

  .toolbar .switcher {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }

  .toolbar-actions {
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    min-width: 0;
  }

  .switcher {
    height: 3.4rem;
    min-height: 3.4rem;
    padding: 0 0.4rem;
    font-size: 0.9rem;
  }

  .switcher > span {
    font-size: 0.9rem;
  }

  .switcher-btn,
  .theme-btn,
  .photos-btn {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
  }

  .theme-btn,
  .photos-btn {
    flex: 1;
    height: 3.4rem;
    min-height: 3.4rem;
    min-width: 0;
    padding: 0.25rem 0.5rem;
  }

  .theme-btn .btn-text,
  .photos-btn .btn-text {
    display: none;
  }

  .theme-btn .btn-icon,
  .photos-btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: inherit;
  }

  .theme-btn .btn-icon svg,
  .photos-btn .btn-icon svg {
    flex-shrink: 0;
  }

  .theme-btn .theme-icon-sun {
    display: none;
  }

  .theme-btn .theme-icon-moon {
    display: inline-flex;
  }

  .theme-btn.is-active .theme-icon-sun {
    display: inline-flex;
  }

  .theme-btn.is-active .theme-icon-moon {
    display: none;
  }

  .switcher .switcher-full {
    display: none;
  }

  .switcher .switcher-short {
    display: inline;
  }

  .switcher .switcher-btn {
    padding: 0.25rem 0.5rem;
  }

  .hero {
    padding: 2rem 0 1.5rem;
  }

  .hero-inner {
    padding: 1.2rem 0;
  }

  .section-tabs {
    padding: 0.45rem 0 0.5rem;
  }

  .section-tab-btn {
    min-height: 2.45rem;
    font-size: 0.84rem;
    padding: 0.3rem 0.72rem;
  }
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  padding-bottom: 24px;
}

.toolbar-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.switcher > span {
  color: var(--control-muted);
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--paper);
  border: 3px solid var(--line);
  min-height: 3.4rem;
  padding: 0 0.55rem;
}

.switcher-btn,
.photos-btn,
.theme-btn {
  border: 0;
  background: transparent;
  color: var(--control-muted);
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
  cursor: pointer;
}

.switcher-btn.is-active,
.photos-btn.is-active,
.theme-btn.is-active {
  color: var(--ink);
  font-weight: 700;
}

.photos-btn,
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--paper);
  border: 3px solid var(--line);
  min-height: 3.4rem;
  padding: 0 1.05rem;
}

/* --breakpoint-desktop: 901px (var not supported in media queries) */
@media (min-width: 901px) {
  .theme-btn .btn-icon,
  .photos-btn .btn-icon {
    display: none;
  }

  .switcher .switcher-short {
    display: none;
  }
}

.photos-btn:disabled,
.theme-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.switcher-btn:focus-visible,
.theme-btn:focus-visible,
.photos-btn:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: 2px;
}

.menu-root {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

.menu-columns {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.menu-column {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.menu-section {
  border: 3px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.menu-section-title {
  margin: 0;
  background: var(--title-bg);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1.2rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.menu-section-title-suffix {
  font-size: 0.6em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.menu-section-body {
  display: grid;
  gap: 0.9rem;
  background: var(--paper);
  padding: 1.2rem 1.3rem;
  flex: 1;
}

.menu-item {
  display: grid;
  gap: 0.3rem;
}

.menu-item.is-clickable {
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.15s ease;
}

.menu-item.is-clickable:hover {
  background: var(--item-hover);
}

.menu-item.is-clickable:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .menu-item.is-clickable {
    transition: none;
  }
}

.menu-item-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* price stays at top when name wraps */
  gap: 0.8rem;
}

.menu-item-name {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.menu-item-price {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-desc {
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.95rem;
}

.menu-empty {
  margin: 0;
  color: var(--muted-ink);
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.menu-item-tags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.badge-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.badge-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.menu-item-image {
  margin-bottom: 0.4rem;
}

.menu-item-image img {
  width: 100%;
  max-width: 320px;
  height: 180px;
  object-fit: cover;
  border: 2px solid var(--line);
  display: block;
}

.legend-box {
  border: 3px solid var(--line);
  background: var(--paper);
  padding: 1.2rem 1.3rem;
  display: grid;
  gap: 0.65rem;
}

.legend-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.legend-text {
  margin: 0;
  font-size: 0.95rem;
}

.preview-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--modal-overlay);
  z-index: 1000;
  overscroll-behavior: contain;
}

.preview-modal.is-open {
  display: flex;
}

.preview-dialog {
  width: min(920px, 100%);
  max-height: calc(100vh - 2rem);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--paper);
  border: 3px solid var(--line);
  padding: 0.8rem;
}

.preview-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  margin-left: auto;
  display: block;
}

.preview-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.preview-caption,
.preview-fallback {
  margin: 0.6rem 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
}

.preview-fallback {
  color: var(--modal-caption);
}

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

.preview-details {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.3rem;
}

.preview-main {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start; /* price stays at top when name wraps */
  gap: 0.8rem;
}

.preview-name {
  flex: 1;
  min-width: 0;
  font-size: 1.2rem;
  font-weight: 500;
  word-wrap: break-word;
}

.preview-tags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.preview-price {
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.preview-desc {
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (min-width: 1024px) {
  .hero {
    padding: 4.2rem 1rem 2rem;
  }

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

  .menu-root {
    gap: 2rem;
  }

  .menu-column {
    gap: 2rem;
  }

  .menu-section-title,
  .menu-section-body,
  .legend-box {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}

/* --- Banquet page --- */

.banquet-header {
  padding: 1rem 0;
  border-bottom: 3px solid var(--line);
  background: var(--paper);
}

.banquet-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.banquet-back {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-decoration: none;
}

.banquet-back:hover {
  text-decoration: underline;
}

.banquet-back:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: 2px;
}

.banquet-lang-wrap {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.banquet-lang-slash {
  color: var(--control-muted);
  font-family: "Oswald", sans-serif;
}

.banquet-lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--control-muted);
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

.banquet-lang-btn.is-active {
  color: var(--ink);
  font-weight: 700;
}

.banquet-lang-btn:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: 2px;
}

.banquet-main {
  padding: 2.5rem 0 3rem;
}

.banquet-intro {
  margin-bottom: 2.5rem;
}

.banquet-title {
  margin: 0 0 0.75rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.banquet-subtitle {
  margin: 0;
  max-width: 52ch;
  color: var(--muted-ink);
  font-size: 1.05rem;
  line-height: 1.5;
}

.banquet-form-section {
  border: 3px solid var(--line);
  background: var(--paper);
  padding: 1.5rem 1.3rem;
}

.banquet-form-title {
  margin: 0 0 1.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.banquet-form {
  display: grid;
  gap: 1.25rem;
}

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

.banquet-form label {
  font-size: 0.95rem;
  font-weight: 500;
}

.banquet-form .required-mark {
  color: var(--spicy);
  margin-left: 0.15em;
}

.banquet-form input,
.banquet-form select,
.banquet-form textarea {
  font-family: inherit;
  font-size: 1rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  border: 2px solid var(--line);
  background: var(--page-bg);
  color: var(--ink);
}

.banquet-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%232a2a28' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

html[data-theme="dark"] .banquet-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23b9ab92' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
}

.banquet-form input:focus,
.banquet-form select:focus,
.banquet-form textarea:focus {
  outline: 2px solid var(--line);
  outline-offset: 0;
}

.banquet-form textarea {
  min-height: 6rem;
  resize: vertical;
}

.banquet-form input::placeholder,
.banquet-form textarea::placeholder {
  color: var(--control-muted);
}

.banquet-form .form-row-half {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.banquet-form .form-row-half > div {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.banquet-form .form-row-half input {
  width: 100%;
}

@media (max-width: 520px) {
  .banquet-form .form-row-half {
    grid-template-columns: 1fr;
  }
}

.form-status {
  margin: 0;
  font-size: 0.95rem;
}

.form-status.is-success {
  color: var(--vegan);
}

.form-status.is-error {
  color: var(--spicy);
}

.form-actions {
  margin-top: 0.5rem;
}

.banquet-submit {
  appearance: none;
  border: 3px solid var(--line);
  background: var(--title-bg);
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  min-height: 3rem;
  cursor: pointer;
}

.banquet-submit:hover:not(:disabled) {
  filter: brightness(0.97);
}

.banquet-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.banquet-submit:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .banquet-submit:hover {
    transition: none;
  }
}

/* Banquet CTA on index (under logo) */

.banquet-cta-area {
  width: min(1240px, 100% - 2rem);
  margin: 0 auto 1.25rem;
  min-height: 2.75rem; /* reserve space for CTA link to avoid layout shift */
  text-align: center;
}

.banquet-cta-area[hidden] {
  display: none;
}

.banquet-cta-wrap {
  text-align: center;
}

.banquet-cta {
  display: inline-block;
  border: 3px solid var(--line);
  background: var(--title-bg);
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
}

.banquet-cta:hover {
  filter: brightness(0.97);
}

.banquet-cta:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: 2px;
}
