@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Oswald:wght@400;500;600&display=swap");

:root {
  --ink: #080909;
  --panel: #101212;
  --panel-raised: #171a19;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f4f1e9;
  --muted: #a5aaa5;
  --accent: #d4af37;
  --accent-light: #f0d57a;
  --accent-dark: #8d6a2c;
  --green: #738c77;
  --sidebar-width: 18rem;
  --header-height: 4.75rem;
  --content-width: 78rem;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--ink);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a[hidden],
.social-link[hidden],
.button[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display-type,
.nav-link {
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}

.lead {
  max-width: 42rem;
  color: #d5d6d1;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.muted {
  color: var(--muted);
}

.desktop-sidebar {
  position: fixed;
  z-index: 30;
  inset: 0 auto 0 0;
  display: flex;
  width: var(--sidebar-width);
  flex-direction: column;
  padding: 2rem;
  border-right: 1px solid var(--line);
  background: rgba(10, 11, 11, 0.97);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-sidebar .brand {
  display: block;
  width: min(100%, 11.5rem);
  margin-inline: auto;
}

.desktop-sidebar .brand-logo {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.mobile-header .brand {
  width: 3.55rem;
}

.mobile-header .brand-logo {
  width: 3.55rem;
  height: 3.55rem;
}

.site-footer .brand {
  width: 8.5rem;
}

.sidebar-nav {
  display: grid;
  gap: 0.2rem;
  margin: auto 0;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2.9rem;
  padding-left: 1rem;
  color: #aeb2ad;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  transition: color var(--transition), padding var(--transition);
}

.nav-link::before {
  position: absolute;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--accent);
  content: "";
  transition: height var(--transition);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  padding-left: 1.35rem;
  color: var(--text);
}

.nav-link:hover::before,
.nav-link[aria-current="page"]::before {
  height: 1.4rem;
}

.sidebar-bottom {
  color: var(--muted);
  font-size: 0.78rem;
}

.hours-snapshot {
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hours-snapshot strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hours-group + .hours-group {
  margin-top: 0.6rem;
}

.social-links:not(:has(a:not([hidden]))) {
  display: none;
}

.social-link {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: border-color var(--transition), color var(--transition);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.mobile-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  display: none;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 9, 0.92);
  backdrop-filter: blur(14px);
}

.menu-toggle {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle-lines {
  position: relative;
  width: 1.1rem;
  height: 0.75rem;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  content: "";
  transition: transform var(--transition), top var(--transition);
}

.menu-toggle-lines::before {
  top: 0.15rem;
}

.menu-toggle-lines::after {
  top: 0.6rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0.37rem;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0.37rem;
  transform: rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  z-index: 35;
  inset: var(--header-height) 0 0;
  display: none;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  background: #0c0e0d;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer .sidebar-nav {
  margin: 0;
}

.mobile-drawer .nav-link {
  min-height: 3.6rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.4rem;
}

.mobile-drawer-meta {
  margin-top: 2.5rem;
  color: var(--muted);
}

.site-shell {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
}

.page-content {
  min-height: 70vh;
}

.content-wrap {
  width: min(calc(100% - 4rem), var(--content-width));
  margin-inline: auto;
}

.section {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
}

.section--compact {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.section--panel {
  background: var(--panel);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.hero {
  position: relative;
  display: grid;
  min-height: 60vh;
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 5, 0.94) 0%, rgba(4, 5, 5, 0.72) 50%, rgba(4, 5, 5, 0.58) 100%),
    radial-gradient(circle at 78% 28%, rgba(210, 168, 90, 0.18), transparent 27%),
    radial-gradient(circle at 82% 66%, rgba(115, 140, 119, 0.13), transparent 35%),
    #0e1110;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -9rem;
  width: min(45vw, 36rem);
  aspect-ratio: 1;
  border: 1px solid rgba(210, 168, 90, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(210, 168, 90, 0.025),
    0 0 0 8rem rgba(210, 168, 90, 0.02);
  content: "";
}

.hero-inner {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.hero-title span {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(10, 10, 10, 0.28);
  color: var(--text);
}

.button--ghost:hover {
  border-color: var(--accent);
  background: rgba(210, 168, 90, 0.1);
  color: var(--accent-light);
}

.button--small {
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  font-size: 0.68rem;
}

.ticker {
  position: relative;
  display: flex;
  min-height: 3.6rem;
  align-items: stretch;
  overflow: hidden;
  border-block: 1px solid rgba(210, 168, 90, 0.32);
  background: #13110d;
}

.ticker-label {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 1.4rem;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticker-viewport {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  min-width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker-item {
  padding: 0 3rem;
  color: #e8ddc6;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-item::after {
  margin-left: 3rem;
  color: var(--accent);
  content: "◆";
  font-size: 0.5rem;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.page-hero {
  position: relative;
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(2.25rem, 4vw, 3rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 30%, rgba(210, 168, 90, 0.15), transparent 28%),
    linear-gradient(135deg, #111413, #080909 65%);
}

.page-hero::after {
  position: absolute;
  right: -5rem;
  bottom: -18rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(210, 168, 90, 0.16);
  transform: rotate(25deg);
  content: "";
}

.page-hero h1 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
}

.page-hero .lead {
  margin-bottom: 0;
}

.embed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.embed-actions:not(:has(a:not([hidden]))) {
  display: none;
}

.embed-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.embed-frame iframe {
  display: block;
  width: 100%;
  height: 46rem;
  border: 0;
}

.embed-frame--calendar iframe {
  height: 44rem;
}

/* Menus hold one or two sheets, so they are shown big enough to actually read. */
.menu-showcase {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.menu-showcase[data-count="1"] .menu-sheet {
  max-width: 48rem;
}

.menu-showcase[data-count="2"] {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.menu-sheet {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.menu-sheet img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-sheet:hover,
.menu-sheet:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
}

/* Sits under the artwork rather than over it, so no menu text is covered. */
.menu-sheet-hint {
  display: block;
  padding: 0.6rem 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
  transition: color var(--transition);
}

.menu-sheet:hover .menu-sheet-hint,
.menu-sheet:focus-visible .menu-sheet-hint {
  color: var(--accent);
}

/* The gallery is the messy one: as many photos as the folder holds. */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 0.85rem;
}

.photo-grid--embed {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.photo-grid--embed iframe {
  display: block;
  width: 100%;
  height: 42rem;
  border: 0;
}

.photo-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  aspect-ratio: 4 / 3;
}

.photo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.photo-tile:hover img,
.photo-tile:focus-visible img {
  transform: scale(1.05);
}

.photo-tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.photo-tile.is-unavailable {
  display: none;
}

.drive-fallback {
  display: block;
  padding: 3.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

[data-drive-images] .embed-placeholder {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--panel);
}

.embed-placeholder {
  display: grid;
  min-height: 26rem;
  align-content: center;
  justify-items: center;
  gap: 0.4rem;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

.embed-placeholder p {
  margin: 0;
  max-width: 34rem;
}

.notice {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--accent);
  background: rgba(210, 168, 90, 0.07);
  color: #c8c5bc;
  font-size: 0.78rem;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.lineup-grid--below {
  margin-top: 1.75rem;
  margin-bottom: 0;
}

.lineup-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.lineup-card h3 {
  margin-bottom: 0.35rem;
  color: var(--accent-light);
}

.lineup-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(22rem, 1.15fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.detail-list strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--accent-light);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--panel);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: #0b0d0c;
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.story-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.story-stat {
  padding: 1.5rem;
  background: var(--ink);
}

.story-stat strong {
  display: block;
  color: var(--accent-light);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 2rem;
}

.story-stat span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-block {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(210, 168, 90, 0.12), transparent 35%),
    var(--panel);
}

.quote-block blockquote {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070808;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 1.5rem 2rem;
  padding: 2.5rem 0;
}

.footer-column h3 {
  margin-bottom: 0.5rem;
  color: var(--accent-light);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column p {
  margin-bottom: 0.5rem;
}

.footer-column p,
.footer-column a {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  color: #707570;
  font-size: 0.7rem;
}

@media screen and (max-width: 1100px) {
  :root {
    --sidebar-width: 15rem;
  }

  .desktop-sidebar {
    padding: 1.5rem;
  }

  .lineup-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-column:first-child {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 800px) {
  .desktop-sidebar {
    display: none;
  }

  .mobile-header,
  .mobile-drawer {
    display: flex;
  }

  .mobile-drawer {
    flex-direction: column;
  }

  .site-shell {
    margin-left: 0;
    padding-top: var(--header-height);
  }

  .content-wrap {
    width: min(calc(100% - 2.5rem), var(--content-width));
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-block: 3.25rem;
  }

  .hero-actions {
    display: grid;
    max-width: 25rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-heading,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 0.5rem;
  }

  .embed-frame iframe,
  .embed-frame--calendar iframe {
    height: 34rem;
  }

  .menu-showcase[data-count="2"] {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 560px) {
  h1 {
    font-size: clamp(3.15rem, 17vw, 5rem);
  }

  .lineup-grid,
  .form-grid,
  .story-stat-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
  }

  .footer-column:first-child {
    grid-column: 1 / -1;
  }

  .ticker-label {
    padding-inline: 0.8rem;
  }

  .embed-actions .button {
    width: 100%;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
    gap: 0.6rem;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    margin: 0;
  }

  *,
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    animation: none !important;
  }

  .skip-link,
  .mobile-header,
  .mobile-drawer {
    display: none !important;
  }

  .desktop-sidebar {
    display: flex !important;
    position: static;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    padding: 1.4rem 2.4rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background: #070808;
  }

  .desktop-sidebar .brand {
    width: 4.6rem;
    margin: 0;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem 1.4rem;
    margin: 0;
  }

  .nav-link {
    min-height: auto;
    padding-left: 0;
    color: var(--text);
    font-size: 0.85rem;
  }

  .nav-link::before {
    display: none;
  }

  .sidebar-bottom {
    display: none;
  }

  .site-shell {
    margin-left: 0;
    padding-top: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    padding-block: 4rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .embed-placeholder {
    min-height: 16rem;
  }

  a[aria-disabled="true"] {
    opacity: 1;
  }

  .hero,
  .section,
  .page-hero,
  .embed-frame,
  .menu-sheet,
  .photo-tile,
  .split-layout,
  .footer-grid {
    break-inside: avoid;
  }

  .menu-sheet-hint {
    display: none;
  }
}
