:root {
  --river: #0b6e7a;
  --river-deep: #064e57;
  --mint: #7ed0c5;
  --sky: #c9e8f0;
  --foam: #f3fbfb;
  --ink: #14282e;
  --muted: #3f5b62;
  --sun: #e8a317;
  --sun-ink: #3a2a05;
  --line: rgba(11, 110, 122, 0.16);
  --font-body: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-num: "IBM Plex Sans", "Noto Sans JP", sans-serif;
  --header-h: 4.5rem;
  --wrap: 68rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  background:
    radial-gradient(ellipse 80% 40% at 50% -5%, rgba(126, 208, 197, 0.28), transparent 55%),
    radial-gradient(circle at 12% 18%, rgba(126, 208, 197, 0.18), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(201, 232, 240, 0.45), transparent 32%),
    linear-gradient(180deg, #e4f4f6 0%, var(--foam) 22%, #fff 58%, #f0fafb 100%);
  min-height: 100vh;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--river-deep);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--river);
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.num {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--river-deep);
  color: #fff;
  text-decoration: none;
  border-radius: 0.45rem;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - 2rem, 42rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(243, 251, 251, 0.9);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--river-deep);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.logo__mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 10px rgba(11, 110, 122, 0.28));
  transition: transform 0.35s ease;
}

.logo:hover .logo__mark {
  animation: logoBob 0.7s ease;
}

.logo__text {
  font-family: var(--font-num);
  font-size: 1rem;
  font-weight: 700;
}

.fan-badge {
  margin: 0;
  margin-right: auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(11, 110, 122, 0.35);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--river-deep);
  background: transparent;
  position: relative;
}

.fan-badge::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sun), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.logo:hover ~ .fan-badge::after,
.fan-badge:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--river-deep);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.75rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.35rem 0.15rem;
  letter-spacing: 0.02em;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--river-deep);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 48rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #0b6e7a;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 78, 87, 0.82) 0%, rgba(6, 78, 87, 0.55) 42%, rgba(6, 78, 87, 0.28) 100%);
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(5rem, 14vw, 9rem);
  fill: var(--foam);
}

.hero__content {
  width: min(100% - 2rem, var(--wrap));
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
  position: relative;
}

.hero__panel {
  max-width: 34rem;
  padding: 1.35rem 1.4rem 1.45rem;
  background: rgba(6, 55, 62, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.hero__brand {
  margin: 0;
  display: grid;
  gap: 0.2rem;
  line-height: 1.1;
}

.hero__brand-jp {
  font-size: clamp(1.7rem, 4.8vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero__brand-en {
  font-family: var(--font-num);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.14em;
  font-weight: 700;
  opacity: 0.92;
  display: inline-flex;
  gap: 0.45em;
}

.hero__brand-en-word {
  display: inline-block;
  animation: brandPop 2.8s ease-in-out infinite;
}

.hero__brand-en-word:nth-child(2) {
  animation-delay: 0.35s;
  color: #ffe08a;
}

.hero__summary {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.hero__summary li {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  column-gap: 0.85rem;
  align-items: start;
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero__summary-label {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 0.1rem;
}

.hero__summary-body {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.hero__summary-body strong {
  font-weight: 700;
  font-size: 1.05rem;
}

.hero__summary-body small {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.img-credit {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--muted);
}

.img-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.img-credit--hero {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.img-credit--hero a {
  color: rgba(255, 255, 255, 0.78);
}

.photo {
  margin: 0;
}

.photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero__cta,
.season-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--sun);
  color: var(--sun-ink);
  box-shadow: 0 6px 0 rgba(180, 120, 20, 0.35);
}

.btn--primary:hover {
  background: #f0b12a;
  box-shadow: 0 8px 0 rgba(180, 120, 20, 0.28);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn--primary:hover::before {
  transform: translateX(120%);
}

.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(180, 120, 20, 0.35);
}

.btn__ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: btnRipple 0.55s ease-out forwards;
  pointer-events: none;
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.btn--ghost-dark {
  border: 1px solid var(--line);
  color: var(--river-deep);
  background: rgba(255, 255, 255, 0.75);
}

.btn--ghost-dark:hover {
  color: var(--river-deep);
  background: #fff;
}

.section {
  position: relative;
  overflow: clip;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section__label {
  margin: 0 0 0.45rem;
  font-family: var(--font-num);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--river);
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-bottom: 0.35rem;
}

.section__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.4rem;
  height: 0.35rem;
  background:
    radial-gradient(circle at 0.2rem 50%, var(--sun) 0.14rem, transparent 0.16rem),
    radial-gradient(circle at 0.7rem 50%, var(--mint) 0.12rem, transparent 0.14rem),
    radial-gradient(circle at 1.15rem 50%, var(--river) 0.1rem, transparent 0.12rem),
    radial-gradient(circle at 1.55rem 50%, var(--sun) 0.09rem, transparent 0.11rem);
  animation: labelDots 2.4s ease-in-out infinite;
}

.section--tint {
  background: linear-gradient(180deg, rgba(201, 232, 240, 0.42), rgba(243, 251, 251, 0.18));
  border-block: 1px solid var(--line);
}

.section--tint::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 18px;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath fill='%23f3fbfb' d='M0 24c120-16 240 16 360 8s240-28 360-16 240 28 360 12 240-20 360-8v20H0z'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  opacity: 0.9;
  z-index: 0;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  line-height: 1.35;
  font-weight: 900;
}

.section__lead {
  margin: 0.9rem 0 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.nowrap {
  white-space: nowrap;
}

.hl {
  color: var(--river-deep);
  font-weight: 700;
  background: linear-gradient(transparent 62%, rgba(126, 208, 197, 0.45) 62%);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 1.75rem;
  margin: 2rem 0 0;
}

.stat {
  margin: 0;
  padding: 1.15rem 0 1rem;
  border-top: 1px solid var(--line);
}

.stat__kicker {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

.stat__value {
  margin: 0.55rem 0 0;
  font-size: clamp(1.85rem, 3.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--river-deep);
}

.stat__value span {
  margin-inline: 0.12em;
  font-size: 0.6em;
}

.stat__value--time {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  line-height: 1.35;
}

.stat__note {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.note-text,
.example-line,
.emphasis-line,
.fineprint {
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.ticket-note {
  margin: 1.1rem 0 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.emphasis-line {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.fee-table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 20rem;
}

.fee-table th,
.fee-table td {
  padding: 1rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.fee-table thead th {
  font-size: 0.88rem;
  color: var(--muted);
}

.fee-table tbody td {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--river-deep);
}

.plain-list,
.source-list,
.voices {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
}

.tips-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.tips-col {
  padding: 1.2rem 1.1rem 1.3rem;
  border-top: 3px solid var(--mint);
  background: rgba(255, 255, 255, 0.55);
}

.tips-col--ng {
  border-top-color: #b42318;
  background: rgba(180, 35, 24, 0.04);
}

.tips-col__title {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--river-deep);
}

.tips-col--ng .tips-col__title {
  color: #8f1d14;
}

.pict-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.pict-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.pict-list--ng li {
  grid-template-columns: auto auto 1fr;
}

.pict {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.pict-x {
  display: grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: #b42318;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
}

.pict-list strong {
  display: block;
  font-size: 1.02rem;
}

.pict-list span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.parking-hero {
  margin-top: 1.75rem;
  padding: 1.5rem 0 1.35rem;
  border-top: 3px solid var(--sun);
  border-bottom: 1px solid var(--line);
}

.parking-hero__label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.parking-hero__title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--river-deep);
}

.parking-hero__time {
  margin: 0.55rem 0 0;
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.parking-hero__note {
  margin: 0.85rem 0 0;
  max-width: 42rem;
  color: var(--muted);
}

.access-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.access-blocks h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--river-deep);
  font-weight: 900;
}

.access-blocks p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.bus-links {
  font-size: 0.95rem;
}

.map-embed {
  margin-top: 1.75rem;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #d9ecef;
}

.map-embed--sv {
  margin-top: 0.65rem;
  aspect-ratio: 4 / 3;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.street-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.street-card {
  margin: 0;
}

.street-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--river-deep);
}

.facility-extra {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.facility-extra h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--river-deep);
}

.facility-extra p {
  margin: 0.7rem 0 0;
  max-width: 48rem;
  color: var(--muted);
}

.food-nearby__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
}

.food-nearby__list li {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0 0;
  border-top: 1px dashed var(--line);
}

.food-nearby__list li:first-child {
  border-top: 0;
  padding-top: 0.35rem;
}

.food-nearby__list strong {
  color: var(--river-deep);
  font-size: 0.98rem;
}

.food-nearby__list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-row p + p {
  margin-top: 0.75rem;
}

.feature-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 2rem;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.feature-row h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--river-deep);
  font-weight: 900;
}

.feature-row p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.voices {
  display: grid;
  gap: 1.1rem;
}

.voices li {
  padding: 1rem 0 1.15rem;
  border-bottom: 1px solid var(--line);
}

.voices time {
  display: block;
  font-family: var(--font-num);
  font-weight: 700;
  color: var(--river);
  letter-spacing: 0.03em;
  font-size: 1.05rem;
}

.voices p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.voice-source {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.voices-more {
  margin-top: 1.25rem;
}

.subhead {
  margin: 1.1rem 0 0;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--river-deep);
}

.source-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  padding: 3rem 0 4rem;
  background: var(--river-deep);
  color: rgba(255, 255, 255, 0.92);
}

.site-footer a {
  color: #fff;
}

.site-footer__brand {
  margin: 0;
  font-family: var(--font-num);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer p {
  margin: 0.75rem 0 0;
  max-width: 36rem;
}

.site-footer__meta {
  opacity: 0.75;
  font-size: 0.9rem;
}

.to-top {
  display: inline-block;
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .season-grid,
  .access-blocks,
  .feature-row,
  .tips-cols,
  .street-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    padding: 1rem 1.25rem 1.35rem;
    background: rgba(243, 251, 251, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-nav a {
    padding: 0.7rem 0.2rem;
  }

  .site-nav.is-open {
    display: flex;
  }
}

@media (max-width: 560px) {
  .hero__content {
    padding-top: 5rem;
  }

  .hero__cta,
  .season-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .map-embed {
    aspect-ratio: 4 / 3;
  }
}

/* Motion & pool atmosphere — bold decorative illustrations */
.hero__photo {
  transform: scale(1.04);
}

.hero__fun {
  position: absolute;
  /* Keep art away from the left text panel */
  top: 0;
  right: 0;
  bottom: 0;
  left: max(34rem, 56%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__content {
  z-index: 1;
}

.hero__fun-sun {
  position: absolute;
  top: 6%;
  right: 8%;
  animation: sunSpin 18s linear infinite;
  filter: drop-shadow(0 8px 18px rgba(232, 163, 23, 0.35));
}

.hero__fun-float {
  position: absolute;
  right: 4%;
  bottom: 22%;
  animation: floatyBig 5.5s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.hero__fun-ring {
  position: absolute;
  right: 22%;
  top: 28%;
  animation: floatyBig 6.8s ease-in-out infinite;
  animation-delay: -2.4s;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.hero__fun-slider {
  position: absolute;
  right: 8%;
  top: 12%;
  animation: floatyBig 7.4s ease-in-out infinite;
  animation-delay: -1.2s;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
  opacity: 0.95;
}

.hero__fun-ball {
  position: absolute;
  right: 42%;
  top: 14%;
  animation: ballBounce 2.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.2));
}

.hero__fun-splash {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.4);
  animation: splashRipple 4.2s ease-out infinite;
}

.hero__fun-splash--1 {
  right: 12%;
  bottom: 16%;
  width: 90px;
  height: 90px;
}

.hero__fun-splash--2 {
  right: 36%;
  bottom: 30%;
  width: 60px;
  height: 60px;
  animation-delay: -1.8s;
}

.hero__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(126, 208, 197, 0.35));
  animation: bubbleRiseHero 7s ease-in-out infinite;
}

.hero__bubble--1 { width: 18px; height: 18px; left: 18%; bottom: 10%; }
.hero__bubble--2 { width: 12px; height: 12px; left: 36%; bottom: 22%; animation-delay: -1.2s; }
.hero__bubble--3 { width: 16px; height: 16px; left: 58%; bottom: 8%; animation-delay: -2.6s; }
.hero__bubble--4 { width: 10px; height: 10px; left: 72%; bottom: 28%; animation-delay: -3.4s; }
.hero__bubble--5 { width: 22px; height: 22px; left: 84%; bottom: 12%; animation-delay: -0.8s; }
.hero__bubble--6 { width: 14px; height: 14px; left: 48%; bottom: 36%; animation-delay: -4.2s; }

.hero__wave-path {
  animation: waveShift 7s ease-in-out infinite;
  transform-origin: center;
}

/* Section art lives only in side gutters outside .wrap */
.pool-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  --gutter: max(0px, calc((100% - var(--wrap)) / 2));
}

.section > .wrap {
  position: relative;
  z-index: 1;
  background: transparent;
}

.pool-art__svg {
  position: absolute;
  width: min(200px, calc(var(--gutter) - 0.75rem));
  height: auto;
  max-width: calc(var(--gutter) - 0.75rem);
  filter: drop-shadow(0 8px 16px rgba(6, 78, 87, 0.08));
}

.pool-art__svg--ring-lg,
.pool-art__svg--slider,
.pool-art__svg--sun,
.pool-art__svg--float-sm,
.pool-art__svg--drop,
.pool-art__svg--drop-2,
.pool-art__svg--wave-line {
  left: auto;
  right: 0.35rem;
}

.pool-art__svg--ring-md,
.pool-art__svg--float-lg {
  right: auto;
  left: 0.35rem;
}

.pool-art__svg--ring-lg {
  top: 1.2rem;
  animation: floatyGutter 7s ease-in-out infinite;
}

.pool-art__svg--ring-md {
  bottom: 10%;
  animation: floatyGutter 8s ease-in-out infinite;
  animation-delay: -2s;
}

.pool-art__svg--float-lg {
  top: 22%;
  animation: floatyGutter 6.5s ease-in-out infinite;
  animation-delay: -1.4s;
}

.pool-art__svg--float-sm {
  top: 28%;
  animation: floatyGutter 7.5s ease-in-out infinite;
  animation-delay: -3s;
}

.pool-art__svg--sun {
  top: 1rem;
  animation: sunPulse 5s ease-in-out infinite;
}

.pool-art__svg--wave-line {
  bottom: 8%;
  width: min(180px, calc(var(--gutter) - 0.75rem));
  animation: waveShift 8s ease-in-out infinite;
}

.pool-art__svg--slider {
  top: 10%;
  animation: floatyGutter 7.2s ease-in-out infinite;
}

.pool-art__svg--drop {
  top: 14%;
  width: min(56px, calc(var(--gutter) - 1rem));
  animation: dropBounce 3.2s ease-in-out infinite;
}

.pool-art__svg--drop-2 {
  top: 32%;
  width: min(42px, calc(var(--gutter) - 1rem));
  animation-delay: -1.4s;
}

.pool-art__svg--ball {
  top: auto;
  bottom: 14%;
  right: 0.35rem;
  left: auto;
  width: min(96px, calc(var(--gutter) - 0.75rem));
  animation: ballBounce 3.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
}

.pool-art__svg--fish {
  top: 42%;
  left: 0.35rem;
  right: auto;
  width: min(110px, calc(var(--gutter) - 0.75rem));
  animation: fishSwim 5.5s ease-in-out infinite;
}

.pool-art--alt .pool-art__svg--float-lg {
  top: auto;
  bottom: 12%;
}

.pool-art__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(126, 208, 197, 0.45));
  animation: bubbleLocal 5.5s ease-in-out infinite;
  opacity: 0.7;
  /* Bubbles also stay in gutters */
  max-width: none;
}

.pool-art__bubble--a,
.pool-art__bubble--b,
.pool-art__bubble--e {
  left: 0.6rem;
  right: auto;
}

.pool-art__bubble--c,
.pool-art__bubble--d {
  right: 0.6rem;
  left: auto;
}

.pool-art__bubble--a { width: 16px; height: 16px; bottom: 18%; }
.pool-art__bubble--b { width: 12px; height: 12px; top: 24%; animation-delay: -1.5s; }
.pool-art__bubble--c { width: 18px; height: 18px; bottom: 28%; animation-delay: -2.8s; }
.pool-art__bubble--d { width: 12px; height: 12px; top: 18%; animation-delay: -0.8s; }
.pool-art__bubble--e { width: 14px; height: 14px; bottom: 40%; animation-delay: -3.6s; }

/* No side gutter → hide section art (prevents text overlap) */
@media (max-width: 1200px) {
  .pool-art {
    display: none;
  }
}

/* Narrow hero: panel is full-width, so keep art only in the empty top band */
@media (max-width: 900px) {
  .hero__fun {
    left: 0;
    bottom: auto;
    height: 38%;
  }

  .hero__fun-sun { width: 64px; height: 64px; top: 10%; right: 6%; }
  .hero__fun-float { width: 100px; height: auto; right: 4%; bottom: 8%; }
  .hero__fun-ring { width: 84px; height: auto; right: 38%; top: 18%; }
  .hero__fun-slider { width: 72px; height: auto; right: 8%; top: 8%; opacity: 0.75; }
  .hero__fun-ball { width: 52px; height: auto; right: 28%; top: 12%; }
  .hero__fun-splash--1 { width: 48px; height: 48px; bottom: 10%; }
  .hero__fun-splash--2 { width: 36px; height: 36px; bottom: 18%; }
}

html.motion-ready .reveal:not(.reveal--hero) {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.motion-ready .reveal.is-in,
html .reveal--hero,
html.no-js .reveal {
  opacity: 1;
  transform: none;
}

html.motion-ready .reveal--hero,
html.js .reveal--hero {
  animation: heroIn 0.8s ease both;
}

html.motion-ready .reveal.is-in .stagger > * {
  animation: riseIn 0.5s ease both;
}

html.motion-ready .reveal.is-in .stagger > *:nth-child(1) { animation-delay: 0.04s; }
html.motion-ready .reveal.is-in .stagger > *:nth-child(2) { animation-delay: 0.1s; }
html.motion-ready .reveal.is-in .stagger > *:nth-child(3) { animation-delay: 0.16s; }
html.motion-ready .reveal.is-in .stagger > *:nth-child(4) { animation-delay: 0.22s; }

html.motion-ready .reveal.is-in .stat__value {
  animation: numberPop 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.season-grid .stat,
.tips-col,
.feature-row {
  transition: transform 0.3s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  html.motion-ready .reveal.is-in .season-grid .stat:hover,
  html.motion-ready .reveal.is-in .tips-col:hover {
    transform: translateY(-2px);
  }

  .pict {
    transition: transform 0.25s ease;
  }

  .pict-list li:hover .pict {
    transform: translateY(-2px) scale(1.04);
  }

  .feature-row:hover .photo img {
    transform: scale(1.015);
  }

  .btn:hover {
    box-shadow: 0 8px 18px rgba(6, 78, 87, 0.14);
  }

  .to-top:hover {
    transform: translateY(-2px);
  }
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1rem;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(6, 78, 87, 0.08);
}

.btn {
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.voices-panel {
  overflow: hidden;
  max-height: none;
  opacity: 1;
  margin-top: 0.35rem;
  transition:
    max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    margin-top 0.4s ease;
}

html.js .voices-panel.is-collapsible:not(.is-open) {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

.voices-panel.is-open {
  opacity: 1;
  margin-top: 0.35rem;
}

html.no-js .voices-more {
  display: none;
}

.voices--extra {
  margin-top: 0;
}

.voices-more {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.voices-more__chevron {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.35s ease;
}

.voices-more[aria-expanded="true"] .voices-more__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.feature-row .photo img {
  transition: transform 0.45s ease;
}

.to-top {
  transition: transform 0.2s ease;
}

@keyframes bubbleLocal {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-22px); opacity: 0.9; }
}

@keyframes bubbleRiseHero {
  0% { transform: translateY(0) scale(1); opacity: 0.15; }
  25% { opacity: 0.75; }
  100% { transform: translateY(-46vh) scale(1.25); opacity: 0; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes floatyBig {
  0%, 100% { transform: translateY(0) rotate(-3deg) scale(1); }
  50% { transform: translateY(-18px) rotate(3deg) scale(1.03); }
}

@keyframes floatyGutter {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes ballBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40% { transform: translateY(-22px) rotate(18deg); }
  55% { transform: translateY(0) rotate(28deg); }
  70% { transform: translateY(-10px) rotate(40deg); }
}

@keyframes fishSwim {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-8px) translateX(10px); }
}

@keyframes brandPop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes logoBob {
  0% { transform: translateY(0) rotate(0deg); }
  35% { transform: translateY(-4px) rotate(-6deg); }
  70% { transform: translateY(1px) rotate(4deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes labelDots {
  0%, 100% { opacity: 0.7; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

@keyframes btnRipple {
  to { transform: scale(12); opacity: 0; }
}

@keyframes numberPop {
  from { transform: scale(0.92); opacity: 0.4; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes splashRipple {
  0% { transform: scale(0.45); opacity: 0.55; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes waveShift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-28px); }
}

@keyframes sunSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes dropBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(14px); opacity: 1; }
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__fun,
  .hero__wave-path,
  .pool-art,
  .section--tint::after,
  .section__label::after {
    display: none !important;
  }

  html.motion-ready .reveal,
  html.motion-ready .reveal--hero,
  html.motion-ready .reveal.is-in .stagger > *,
  html.motion-ready .reveal.is-in .stat__value,
  .btn,
  .btn--primary::before,
  .voices-panel,
  .voices-more__chevron,
  .feature-row .photo img,
  .site-nav a::after,
  .hero__photo,
  .hero__brand-en-word,
  .pict,
  .logo__mark {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    max-height: none !important;
    will-change: auto !important;
    margin-top: 0.35rem !important;
  }
}
