/* Catalog homepage — river lanterns landing */
:root {
  --ink: #e8f0e4;
  --gold: #f0c36a;
  --deep: #071018;
  --display: "Klee One", Georgia, serif;
  --body: "M PLUS 1p", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; overflow-x: clip; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--deep);
}
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--gold);
  color: var(--deep);
  padding: 0.5rem 0.85rem;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }
.water {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  cursor: pointer;
}
.water > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  z-index: 0;
}
.fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.copy { position: relative; z-index: 3; padding: 1.3rem 1.2rem 8rem; }
.word {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  text-decoration: none;
  display: block;
}
.lede { max-width: 32rem; margin: 0.4rem 0 0.9rem; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.burger {
  display: none;
  font-weight: 700;
  background: var(--gold);
  color: var(--deep);
  border: 0;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  font-weight: 700;
  font-size: 0.85rem;
}
.nav a { text-decoration: none; opacity: 0.85; }
.nav a[aria-current="page"] { color: var(--gold); opacity: 1; }
.bank {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 1.2rem;
  background: none;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.85), 0 0 28px rgba(0, 0, 0, 0.55);
}
.bank p { margin: 0 0 0.5rem; font-size: 0.78rem; opacity: 0.8; }
.list { display: flex; flex-wrap: wrap; gap: 0.45rem 1.1rem; }
.list a {
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.25rem;
  text-shadow: 0 0 0 transparent;
  transition: text-shadow 0.25s ease, color 0.25s ease;
}
.list a span {
  display: block;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.75;
}
.list a:hover, .list a:focus-visible {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(240, 195, 106, 0.9), 0 8px 24px rgba(240, 195, 106, 0.35);
}
footer {
  padding: 0.9rem 1.2rem 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--deep);
}
footer a { color: var(--gold); }
footer nav { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 720px) {
  .burger { display: inline-block; margin-bottom: 0.5rem; }
  .nav { display: none; }
  .nav-toggle:checked ~ .nav { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  .fx { opacity: 0.85; }
}
