/* @dan 18.08.2026: local woff2 only. Don't point this at fonts.gstatic again */
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/sourcesans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/sourcesans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/sourcesans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1a1612;
  --ink-soft: #3d342c;
  --paper: #f3eee4;
  --paper-deep: #e7dfd2;
  --cream: #faf6ef;
  --accent: #b8431f;
  --accent-hover: #8f3316;
  --accent-ink: #f3eee4;
  --line: #cfc4b4;
  --header: #161310;
  --muted: #4a4038;
  --focus: #b8431f;
  --overlay: rgba(18, 14, 11, 0.58);
  --shadow: 0 12px 32px rgba(26, 22, 18, 0.12);
  --radius: 4px;
  --max: 1180px;
  --header-offset: 118px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-hover);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.6rem 1rem;
}

.skip-link:focus {
  top: 12px;
  color: var(--accent-ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  background: #100e0c;
  color: #d8cfc3;
  font-size: 0.84rem;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding: 0.45rem 0;
}

.topbar a {
  color: #d8cfc3;
  text-decoration: none;
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header);
  border-bottom: 1px solid #2a241f;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--paper);
  text-decoration: none;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
  color: #f67c56;
  text-transform: uppercase;
}

.logo img {
  width: 180px;
  height: 40px;
}

.logo:hover {
  color: var(--paper);
}

.nav-desktop {
  display: none;
  margin-left: auto;
  gap: 1.35rem;
}

.nav-desktop a {
  color: #efe6da;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-desktop a[aria-current="page"],
.nav-desktop a:hover {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--accent);
}

.header-cta {
  display: none;
  margin-left: 0.5rem;
}

.nav-toggle {
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid #4a4038;
  background: transparent;
  color: #efe6da;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #efe6da;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 8, 0.55);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 50;
}

.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: #1c1814;
  color: #efe6da;
  z-index: 60;
  padding: 1.25rem 1.4rem 2rem;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
  overflow: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.nav-close {
  width: 44px;
  height: 44px;
  border: 1px solid #4a4038;
  background: transparent;
  color: #efe6da;
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav a {
  display: block;
  color: #efe6da;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid #322b25;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.65rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.btn--accent:hover {
  background: var(--accent-hover);
  color: var(--accent-ink);
  border-color: var(--accent-hover);
}

.btn--ghost {
  background: transparent;
  color: #efe6da;
  border-color: #efe6da;
}

.btn--ghost:hover {
  background: #efe6da;
  color: var(--ink);
}

.btn--line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--line:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #f6f0e7;
  overflow: hidden;
}

.hero--short {
  min-height: 420px;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(16, 12, 9, 0.62);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.hero__content h1,
.page-hero h1 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.8rem;
  max-width: 16ch;
  color: #f6f0e7;
}

.hero__lead {
  max-width: 42rem;
  margin: 0 0 1.6rem;
  font-size: 1.12rem;
  color: #ece3d6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: 4.5rem 0;
}

.section--paper {
  background: var(--paper);
}

.section--ink {
  background: var(--ink);
  color: #ece3d6;
}

.section--deep {
  background: var(--paper-deep);
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.section--ink .eyebrow {
  color: #e48a68;
}

h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 1rem;
}

h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0 0 0.6rem;
}

h4 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.lede {
  max-width: 44rem;
  color: var(--ink-soft);
}

.section--ink .lede {
  color: #d8cfc3;
}

.split {
  display: grid;
  gap: 2rem;
}

.split--center {
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.tile-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.tile {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.tile h3 {
  margin-bottom: 0.35rem;
}

.tile p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-grid,
.card-grid,
.amenity-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-card,
.venue-card,
.package-card,
.amenity-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.feature-card__media,
.venue-card__media,
.package-card__media,
.amenity-card__media {
  position: relative;
  min-height: 200px;
}

.feature-card__media img,
.venue-card__media img,
.package-card__media img,
.amenity-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-card__body,
.venue-card__body,
.package-card__body,
.amenity-card__body {
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0;
  margin: 0 0 0.7rem;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  margin-top: auto;
  font-weight: 600;
  color: var(--ink);
}

.card-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.stats {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
  color: var(--accent);
}

.stat span {
  color: var(--ink-soft);
}

.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.55rem 0.7rem;
  border: 1px solid #b7ad9f;
  border-radius: var(--radius);
  font: inherit;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 400;
}

.check input {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 0;
  margin-top: 0.25rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-stack {
  margin-top: 1rem;
}

body.has-cookie {
  padding-bottom: 8.5rem;
}

.footer-cta {
  background: #221c18;
  color: #efe6da;
  padding: 3rem 0;
}

.footer-cta h2 {
  color: #f6f0e7;
}

.footer-cta p {
  color: #d8cfc3;
}

.site-footer {
  background: #100e0c;
  color: #cfc4b4;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.site-footer h2,
.site-footer h3 {
  color: #f3eee4;
}

.site-footer a {
  color: #d8cfc3;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0.35rem 0;
}

.footer-base {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #2a241f;
  display: grid;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.prose {
  max-width: 46rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.legal h2 {
  margin-top: 2rem;
}

.offer-list,
.detail-list {
  margin: 0;
  padding-left: 1.15rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #1a1612;
  color: #f3eee4;
  border-top: 3px solid var(--accent);
  padding: 1rem 0;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.cookie-banner.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: #f3eee4;
}

.cookie-banner a {
  color: #ffc2a8;
}

.cookie-banner a:hover {
  color: #fff;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn--quiet {
  background: transparent;
  color: #f3eee4;
  border-color: #d8cfc3;
}

.btn--quiet:hover {
  background: #f3eee4;
  color: var(--ink);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 12, 9, 0.62);
}

.modal__box {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

@media (min-width: 720px) {
  .tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .card-grid,
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 979px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .topbar span {
    display: none;
  }
}

@media (min-width: 980px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .tile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-grid,
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats {
    grid-template-columns: repeat(5, 1fr);
  }

  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* aliases leftover from the Aug rewrite. @dan said leave both class names */
.main-header {
  /* same as .site-header */
}

.hero-section.hero,
.hero-baner {
  position: relative;
}

.pricin-card,
.card-fix-2026 {
  border-color: #cfc4b4;
}

.secton-dark {
  background: var(--ink);
  color: #ece3d6;
}

.mw-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.ui-btn {
  cursor: pointer;
}

.tonightBoard,
.appCapacity,
.setListBox,
.yearTicks,
.parkNote,
.legalStamp,
.cookieTable,
.termChip,
.kitchenStatus,
.nextDates {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
}

.secton-dark .tonightBoard,
.secton-dark .setListBox {
  background: #241e1a;
  border-color: #3a322c;
  color: #ece3d6;
}

.tonightBoard ul,
.nextDates ul,
.setListBox ol,
.yearTicks ol,
.appCapacity ul {
  margin: 0.4rem 0 0;
  padding-left: 1.15rem;
}

.cookieTable {
  width: 100%;
  border-collapse: collapse;
}

.cookieTable th,
.cookieTable td {
  border: 1px solid var(--line);
  padding: 0.45rem 0.6rem;
  text-align: left;
}

.termChip {
  display: inline-block;
  font-size: 0.85rem;
}

h2,
h3,
h4,
h5,
h6 {
  scroll-margin-top: calc(var(--header-offset) + 0.75rem);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.table-scroll table {
  min-width: 36rem;
  width: 100%;
}

.table-scroll th,
.table-scroll td {
  white-space: nowrap;
}

.map-frame {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: min(70vh, 420px);
  border: 0;
}

.chat-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

body.has-cookie .chat-widget {
  bottom: 9.25rem;
}

.chat-widget__panel {
  width: 0;
  height: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    all 0.28s ease,
    opacity 0.1s ease;
}

.chat-widget__panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  width: min(380px, calc(100vw - 2rem));
  height: min(560px, calc(100vh - 8rem));
}

.chat-widget__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--header);
  color: var(--paper);
  border-radius: 12px 12px 0 0;
}

.chat-widget__head h2 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--paper);
  font-family: "Newsreader", Georgia, serif;
}

.chat-widget__close {
  width: 44px;
  height: 44px;
  border: 1px solid #4a4038;
  background: transparent;
  color: #efe6da;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.chat-widget__close:hover {
  color: #fff;
  border-color: #efe6da;
}

.chat-widget__log {
  flex: 1;
  overflow: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.chat-msg {
  max-width: 88%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  margin: 0;
}

.chat-msg p {
  margin: 0 0 0.45rem;
}

.chat-msg p:last-child {
  margin-bottom: 0;
}

.chat-msg a {
  font-weight: 600;
}

.chat-msg ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.chat-msg--user {
  align-self: flex-end;
  background: var(--accent);
  color: var(--accent-ink);
}

.chat-msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.chat-msg--typing {
  display: inline-flex;
  gap: 0.28rem;
  align-items: center;
  min-height: 2.4rem;
}

.chat-msg--typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  animation: chat-dot 1s ease-in-out infinite;
}

.chat-msg--typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-msg--typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chat-dot {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.chat-widget__form {
  display: flex;
  gap: 0.45rem;
  padding: 0.75rem;
  border-top: 1px solid var(--line);
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.chat-widget__form input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
}

.chat-widget__form button {
  flex-shrink: 0;
  min-height: 44px;
  min-width: 44px;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.chat-widget__form button:hover {
  background: var(--accent-hover);
}

.chat-widget__toggle {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chat-widget__toggle:hover {
  background: var(--accent-hover);
}

.chat-widget__toggle svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .chat-widget {
    right: 0.65rem;
    left: 0.65rem;
    align-items: stretch;
  }

  .chat-widget__panel.is-open {
    width: 100%;
    height: min(100vh - 6.5rem, 100dvh - 6.5rem);
  }

  .chat-widget__toggle {
    align-self: flex-end;
  }

  /* body.has-cookie .chat-widget__panel {
    height: min(100vh - 14rem, 100dvh - 14rem);
  } */
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .chat-widget__panel,
  .chat-msg--typing span {
    animation: none;
    transition: none;
  }
}

.legal {
  overflow-wrap: break-word;
}

body[data-doc] main {
  overflow-x: clip;
}

img[loading="lazy"] {
  background-color: var(--paper-deep);
}
