/* ============================================================
   Luke SKY & GARDEN — style.css  (POP "SKY & ALOHA" edition)
   Mobile-first / breakpoints: <=720px mobile, 721-1050px tablet, >=1051px desktop
   ============================================================ */

:root {
  /* Sky & Aloha POP palette */
  --sky: #59BEEA;
  --sky-deep: #2E9AD0;
  --sky-pale: #E8F6FE;
  --sun: #FFC53F;
  --sun-deep: #E8A31C;
  --sun-soft: #FFF9E8;
  --coral: #FF7B5A;
  --coral-deep: #E85C3A;
  --coral-soft: #FFF0EA;
  --grass: #7DC242;
  --leaf: #4E9B3B;
  --mint: #EAF9EE;
  --ink: #33421D;
  --paper: #FFFDF6;
  --white: #FFFFFF;

  /* pastel hard-shadow colors */
  --pop-coral: #FFD3C5;
  --pop-sun: #FFE9AC;
  --pop-sky: #C4E9FB;
  --pop-grass: #D3EDBC;

  --font-body: "Gen Interface JP", "Noto Sans JP", sans-serif;
  --font-display: "Gen Interface JP Display", "Noto Sans JP", sans-serif;

  --header-h: 68px;
  --header-gap: 10px;
  --border-pop: 2.5px solid var(--ink);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-boing: cubic-bezier(0.45, 1.9, 0.5, 0.95);
}

@media (min-width: 721px) {
  :root { --header-h: 80px; }
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + var(--header-gap) + 20px);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  line-height: 1.9;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 { margin: 0; line-height: 1.35; font-weight: 800; }
p, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: var(--sky-deep); text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

.display, h1, h2 { font-family: var(--font-display); }

:focus-visible {
  outline: 3px solid var(--sky-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 300;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  transform: translateY(-64px);
  transition: transform 0.25s var(--ease-out);
}
.skip-link:focus-visible { transform: translateY(0); }

.sp-only { display: inline; }
@media (min-width: 721px) { .sp-only { display: none; } }

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 2.5rem, 1160px);
  margin-inline: auto;
}
.container--narrow { max-width: 840px; }

.section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.section > .container { position: relative; z-index: 2; }

.section-head { position: relative; margin-bottom: clamp(2.25rem, 5vw, 4rem); }

.section-title {
  font-size: clamp(1.9rem, 1.3rem + 2.8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.42;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}
/* marker-pen highlight */
.section-title .hl {
  background-image: linear-gradient(transparent 60%, rgba(255, 197, 63, 0.75) 60%, rgba(255, 197, 63, 0.75) 92%, transparent 92%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.section-title .hl--sky {
  background-image: linear-gradient(transparent 60%, rgba(89, 190, 234, 0.55) 60%, rgba(89, 190, 234, 0.55) 92%, transparent 92%);
}
.section-title .hl--coral {
  background-image: linear-gradient(transparent 60%, rgba(255, 123, 90, 0.5) 60%, rgba(255, 123, 90, 0.5) 92%, transparent 92%);
}

.section-lead {
  margin-top: 1rem;
  font-weight: 600;
  color: rgba(51, 66, 29, 0.8);
}

/* ---------- Eyebrow sticker chips ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: 1.2rem;
  padding: 0.4em 1.2em;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 0.68rem + 0.25vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.eyebrow--coral { background: var(--coral); color: var(--white); transform: rotate(1.5deg); }
.eyebrow--sun { background: var(--sun); color: var(--ink); }
.eyebrow--ocean { background: var(--sky); color: var(--ink); transform: rotate(-1.5deg); }
.eyebrow .icon { width: 1.4em; height: 1.4em; flex: none; transform-origin: 50% 60%; }
.icon--pin { object-fit: contain; }
@media (prefers-reduced-motion: no-preference) {
  .eyebrow .icon { animation: icon-wiggle 3.6s ease-in-out infinite; }
}
@keyframes icon-wiggle {
  0%, 24%, 100% { transform: rotate(0deg); }
  6% { transform: rotate(-14deg) scale(1.15); }
  12% { transform: rotate(11deg); }
  18% { transform: rotate(-5deg); }
}

/* ---------- POP buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.8em 1.7em;
  border: var(--border-pop);
  border-radius: 999px;
  font-weight: 800;
  font-size: clamp(0.8rem, 0.76rem + 0.2vw, 0.95rem);
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 5px 0 var(--ink);
  transition: transform 0.35s var(--ease-boing), box-shadow 0.35s var(--ease-boing), background-color 0.3s, color 0.3s;
}
.btn:hover { transform: translateY(-4px) rotate(-1deg) scale(1.03); box-shadow: 0 9px 0 var(--ink); }
.btn:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--ink); }
.btn--lg { padding: 1em 2.3em; font-size: clamp(0.9rem, 0.85rem + 0.3vw, 1.05rem); }

.btn--primary { background: var(--coral); color: var(--white); }
.btn--primary:hover { background: var(--coral-deep); }

.btn--coral { background: var(--coral); color: var(--white); }
.btn--coral:hover { background: var(--coral-deep); }

.btn--outline { background: var(--white); color: var(--ink); }
.btn--outline:hover { background: var(--sun); }

.btn--sky { background: var(--sky); color: var(--ink); }
.btn--sky:hover { background: var(--sky-deep); color: var(--white); }

.btn--ghost {
  border: 0;
  box-shadow: none;
  padding-inline: 0.6em;
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(51, 66, 29, 0.35);
  text-underline-offset: 5px;
}
.btn--ghost:hover { color: var(--sky-deep); text-decoration-color: currentColor; transform: none; box-shadow: none; }
.btn--ghost:active { transform: none; box-shadow: none; }

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 800;
  color: var(--sky-deep);
  border-bottom: 2.5px solid rgba(46, 154, 208, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-bounce);
}
.text-link:hover { border-color: currentColor; color: var(--coral-deep); transform: translateX(4px) rotate(-1deg); }
.text-link--sm { margin-top: 0.8rem; font-size: 0.85em; }

/* ============================================================
   Preloader
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--sky-pale);
  clip-path: inset(0 0 0 0);
}
.js .preloader { display: flex; }
.preloader.is-done {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.75s var(--ease-out);
}
.preloader.is-removed { display: none; }

.preloader__inner { text-align: center; }

.preloader__logo {
  width: clamp(260px, 42vw, 440px);
  margin-inline: auto;
  opacity: 0;
  transform: scale(0.7) rotate(-4deg);
  animation: preloader-logo-in 0.9s var(--ease-bounce) 0.1s forwards;
}
@keyframes preloader-logo-in {
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.preloader__gauge {
  width: clamp(180px, 40vw, 240px);
  height: 10px;
  margin: 2rem auto 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}
.preloader__bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--sky));
  transform: scaleX(0);
  transform-origin: left center;
}

.preloader__percent {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.preloader__unit { font-size: 0.75em; margin-left: 1px; }

.preloader__tagline {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--sky-deep);
  opacity: 0;
  animation: preloader-tagline-in 1s ease 0.7s forwards;
}
@keyframes preloader-tagline-in { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .preloader__logo { animation-duration: 0.01s; animation-delay: 0s; }
  .preloader__tagline { animation-duration: 0.01s; animation-delay: 0s; }
  .preloader.is-done { clip-path: none; opacity: 0; transition: opacity 0.2s ease; }
}

/* ============================================================
   Header — floating white pill
   ============================================================ */
.site-header {
  position: fixed;
  top: var(--header-gap);
  left: clamp(8px, 1.5vw, 18px);
  right: clamp(8px, 1.5vw, 18px);
  z-index: 200;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: 999px;
  border: var(--border-pop);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 0 rgba(51, 66, 29, 0.18);
  transition: box-shadow 0.35s;
}
.site-header.is-scrolled::before { box-shadow: 0 8px 0 rgba(51, 66, 29, 0.28); }

.site-header__hairline { display: none; }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
  padding-inline: clamp(1.1rem, 3vw, 2rem);
  transition: height 0.35s var(--ease-out);
}
.site-header.is-scrolled .site-header__inner { height: calc(var(--header-h) - 10px); }

.site-header__brand { flex: none; border-radius: 8px; }
.site-header__brand img {
  width: auto;
  height: calc(var(--header-h) - 8px);
  transition: height 0.35s var(--ease-out), transform 0.4s var(--ease-bounce);
}
.site-header__brand:hover img { transform: rotate(-3deg) scale(1.06); }
.site-header.is-scrolled .site-header__brand img { height: calc(var(--header-h) - 18px); }

.global-nav { margin-left: auto; }
.global-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.9rem);
}
.global-nav__list a {
  display: inline-block;
  padding: 0.45em 0.85em;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.875rem;
  transition:
    background-color 0.3s,
    color 0.3s,
    transform 0.35s var(--ease-boing);
}
.global-nav__list a:hover,
.global-nav__list a:focus-visible {
  background: var(--sun);
  transform: translateY(-3px) rotate(-2deg);
}

/* currently-in-view section, kept highlighted while scrolling */
.global-nav__list a.is-active {
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
  transform: rotate(-1.5deg);
  box-shadow: 2px 2px 0 var(--ink);
}
.global-nav__list a.is-active:hover {
  transform: translateY(-3px) rotate(-2deg);
}

.global-nav__cta { display: none; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: none;
}
.site-header__actions .btn { box-shadow: 0 4px 0 var(--ink); }
.site-header__actions .btn:hover { box-shadow: 0 7px 0 var(--ink); }
.site-header__actions .btn--ghost,
.site-header__actions .btn--ghost:hover { box-shadow: none; }
.site-header__sub-cta { font-size: 0.8rem; }

@media (min-width: 1051px) and (max-width: 1280px) {
  .site-header__sub-cta { display: none; }
  .global-nav__list a { font-size: 0.82rem; }
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex: none;
  width: 46px; height: 46px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--sun);
  box-shadow: 3px 3px 0 var(--ink);
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-bounce);
}
.nav-toggle:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 22px;
}
.nav-toggle__bars span {
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Tablet & mobile nav drawer */
@media (max-width: 1050px) {
  .site-header__actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .js .global-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(84vw, 380px);
    margin: 0;
    padding: calc(var(--header-h) + var(--header-gap) + 2rem) 2rem 2.5rem;
    background: var(--sky-pale);
    border-left: var(--border-pop);
    border-radius: 32px 0 0 32px;
    box-shadow: -20px 0 60px rgba(51, 66, 29, 0.18);
    transform: translateX(105%);
    transition: transform 0.45s var(--ease-out), visibility 0.45s;
    visibility: hidden;
    overflow-y: auto;
    z-index: -1;
  }
  .js .global-nav.is-open { transform: translateX(0); visibility: visible; }

  .global-nav__list { flex-direction: column; align-items: stretch; gap: 0.3rem; }
  .global-nav__list a {
    display: block;
    padding: 0.85em 0.9em;
    font-size: 1rem;
    border-radius: 16px;
    background: var(--white);
    border: 2px solid var(--ink);
    box-shadow: 3px 3px 0 rgba(51, 66, 29, 0.15);
  }
  .global-nav__cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 2rem;
  }

  html:not(.js) .global-nav { display: none; }
  html:not(.js) .nav-toggle { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + var(--header-gap));
  background: var(--sky-deep);
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; }
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__video { animation: hero-zoom 20s ease-in-out infinite alternate; }
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(46, 154, 208, 0.55) 0%, rgba(46, 154, 208, 0.12) 38%, rgba(51, 66, 29, 0.38) 82%, rgba(51, 66, 29, 0.55) 100%),
    linear-gradient(100deg, rgba(51, 66, 29, 0.45) 0%, rgba(51, 66, 29, 0.05) 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 10vh, 7rem);
  color: var(--white);
}

.hero__eyebrow {
  display: inline-block;
  padding: 0.45em 1.3em;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.7rem, 0.65rem + 0.3vw, 0.9rem);
  letter-spacing: 0.22em;
  transform: rotate(-2deg);
}

.hero__title {
  margin-top: 1.6rem;
  font-size: clamp(2.7rem, 1.4rem + 7vw, 7rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0.03em;
  color: var(--white);
  text-shadow:
    3px 3px 0 var(--ink),
    -1.5px -1.5px 0 var(--ink), 1.5px -1.5px 0 var(--ink), -1.5px 1.5px 0 var(--ink),
    0 10px 34px rgba(51, 66, 29, 0.45);
  transform: rotate(-1.2deg);
}
/* JS-split letters pop in one by one */
.hero__title .tchar { display: inline-block; }
.js.has-split .hero__title .tchar {
  opacity: 0;
  transform: translateY(0.7em) scale(0.4) rotate(-12deg);
}
.js.has-split .is-loaded .hero__title .tchar {
  animation: char-pop 0.7s var(--ease-bounce) forwards;
  animation-delay: calc(0.35s + var(--i) * 0.06s);
}
@keyframes char-pop {
  60% { opacity: 1; transform: translateY(-0.08em) scale(1.12) rotate(3deg); }
  100% { opacity: 1; transform: none; }
}

.hero__lead {
  margin-top: 1.7rem;
  font-size: clamp(0.9rem, 0.82rem + 0.5vw, 1.18rem);
  font-weight: 700;
  line-height: 2.1;
  text-shadow: 0 2px 4px rgba(51, 66, 29, 0.7), 0 4px 20px rgba(51, 66, 29, 0.5);
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 2.5rem;
}

/* staged reveal */
.js .reveal-hero {
  opacity: 0;
  transform: translateY(34px) scale(0.95);
  transition: opacity 0.9s var(--ease-out), transform 1s var(--ease-bounce);
}
.js .is-loaded .reveal-hero { opacity: 1; transform: none; }
.js .is-loaded .reveal-hero.hero__eyebrow { transform: rotate(-2deg); }
.js .is-loaded .reveal-hero.hero__title { transform: rotate(-1.2deg); }
.js .is-loaded .reveal-hero:nth-child(1) { transition-delay: 0.05s; }
.js .is-loaded .reveal-hero:nth-child(2) { transition-delay: 0.2s; }
.js .is-loaded .reveal-hero:nth-child(3) { transition-delay: 0.35s; }
.js .is-loaded .reveal-hero:nth-child(4) { transition-delay: 0.5s; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(4.5rem, 9vw, 6.5rem);
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 10px rgba(51, 66, 29, 0.8);
}
.hero__scroll-arrow { display: block; font-size: 1.2em; }
@media (prefers-reduced-motion: no-preference) {
  .hero__scroll { animation: scroll-bounce 1.7s ease-in-out infinite; }
}
@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 12px); }
}

.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: clamp(42px, 7vw, 96px); }

/* ============================================================
   Clouds & sun & rainbow (decorations)
   ============================================================ */
/* ---------- Luke_kumo floating cloud system ---------- */
.kumo-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.kumo-cloud {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--kumo-w, 110px);
  opacity: 0;
  transform: translateX(-180px);
  will-change: transform, opacity;
  animation-name: kumo-drift;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  /* "both": apply the 0% keyframe (hidden, off-screen) during any
     positive animation-delay too, so a freshly spawned cloud stays
     invisible off-screen instead of flashing on screen before its
     delay elapses. */
  animation-fill-mode: both;
}
@keyframes kumo-drift {
  0% { transform: translateX(-180px); opacity: 0; }
  8% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 180px)); opacity: 0; }
}

.kumo-cloud__bob {
  animation-name: kumo-bob;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes kumo-bob {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

.kumo-cloud__img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(51, 66, 29, 0.14));
  transition: transform 0.32s var(--ease-boing), opacity 0.32s ease;
  pointer-events: none;
}
.kumo-cloud__img--interactive {
  pointer-events: auto;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .kumo-cloud__img--interactive:hover { transform: scale(1.1) rotate(-4deg); }
}
.kumo-cloud__img.is-morphing {
  transform: scale(0.32) rotate(12deg);
  opacity: 0.15;
}

@media (prefers-reduced-motion: reduce) {
  .kumo-layer { display: none; }
}

/* standalone (non-drifting) kumo illustration, e.g. section decoration */
.kumo-static {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.pricing__kumo { display: none; }
@media (min-width: 900px) {
  .pricing__kumo { display: block; }
}
.kumo-static .kumo-cloud__bob {
  animation-duration: 4.5s;
}
.kumo-static .kumo-cloud__img {
  filter: drop-shadow(0 10px 18px rgba(51, 66, 29, 0.18));
}
@media (prefers-reduced-motion: reduce) {
  .kumo-static .kumo-cloud__bob { animation: none; }
}

.sun-deco {
  position: absolute;
  z-index: 1;
  width: clamp(90px, 12vw, 160px);
  color: var(--sun);
  pointer-events: none;
}
.sun-deco svg { width: 100%; height: auto; overflow: visible; }
.sun-deco__rays { transform-box: fill-box; transform-origin: center; }
@media (prefers-reduced-motion: no-preference) {
  .sun-deco__rays { animation: sun-spin 26s linear infinite; }
}
@keyframes sun-spin { to { transform: rotate(360deg); } }

.rainbow-deco {
  position: absolute;
  z-index: 1;
  width: clamp(150px, 20vw, 280px);
  pointer-events: none;
  opacity: 0.9;
}

/* ============================================================
   Dividers — cloud scallop & grass
   ============================================================ */
.divider { line-height: 0; position: relative; }
.divider svg { width: 100%; height: clamp(42px, 7vw, 96px); display: block; }
.divider--grass {
  height: clamp(36px, 5.8vw, 76px);
  background-image: url("../assets/img/deco-grass-shiba.png");
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: auto 100%;
}

/* ---------- Marquee ribbons ---------- */
.ribbon-wrap {
  overflow: hidden;
  padding-block: 1.1rem;
  line-height: 0;
}
.ribbon {
  border-top: var(--border-pop);
  border-bottom: var(--border-pop);
  transform: rotate(-1.6deg) scale(1.03);
  box-shadow: 0 6px 0 rgba(51, 66, 29, 0.15);
}
.ribbon--coral { background: var(--coral); color: var(--white); }
.ribbon--sun { background: var(--sun); color: var(--ink); }
.ribbon--ocean { background: var(--sky-deep); color: var(--white); transform: rotate(1.4deg) scale(1.03); }

.ribbon__track {
  display: flex;
  width: max-content;
}
@media (prefers-reduced-motion: no-preference) {
  .ribbon__track { animation: ribbon-scroll 22s linear infinite; }
}
@keyframes ribbon-scroll { to { transform: translateX(-50%); } }

.ribbon__chunk {
  display: flex;
  align-items: center;
  padding-block: 0.85em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.85rem, 0.8rem + 0.3vw, 1.05rem);
  letter-spacing: 0.16em;
  line-height: 1;
  white-space: nowrap;
}
.ribbon__chunk span { display: inline-flex; align-items: center; }
.ribbon__chunk span::after {
  content: "";
  width: 1.35em;
  height: 1.35em;
  margin-inline: 1.5em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><g fill='black'><ellipse cx='10' cy='10' rx='3' ry='4.2' transform='rotate(-18 10 10)'/><ellipse cx='22' cy='10' rx='3' ry='4.2' transform='rotate(18 22 10)'/><ellipse cx='5.5' cy='17' rx='2.6' ry='3.6' transform='rotate(-30 5.5 17)'/><ellipse cx='26.5' cy='17' rx='2.6' ry='3.6' transform='rotate(30 26.5 17)'/><path d='M16 15c4 0 7.5 3.2 7.5 6.6 0 2.6-2 4.4-4.6 4.4-1.1 0-2-.3-2.9-.3s-1.8.3-2.9.3c-2.6 0-4.6-1.8-4.6-4.4C8.5 18.2 12 15 16 15Z'/></g></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><g fill='black'><ellipse cx='10' cy='10' rx='3' ry='4.2' transform='rotate(-18 10 10)'/><ellipse cx='22' cy='10' rx='3' ry='4.2' transform='rotate(18 22 10)'/><ellipse cx='5.5' cy='17' rx='2.6' ry='3.6' transform='rotate(-30 5.5 17)'/><ellipse cx='26.5' cy='17' rx='2.6' ry='3.6' transform='rotate(30 26.5 17)'/><path d='M16 15c4 0 7.5 3.2 7.5 6.6 0 2.6-2 4.4-4.6 4.4-1.1 0-2-.3-2.9-.3s-1.8.3-2.9.3c-2.6 0-4.6-1.8-4.6-4.4C8.5 18.2 12 15 16 15Z'/></g></svg>") center / contain no-repeat;
  transform: rotate(-14deg);
}

/* ============================================================
   About
   ============================================================ */
.about { background: var(--sky-pale); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 1051px) {
  .about__grid { grid-template-columns: 1.1fr 0.9fr; }
}

.about__text { margin-top: 1.5rem; }
.about__text + .about__text { margin-top: 1rem; }

/* polaroid photo */
.about__photo {
  position: relative;
  justify-self: center;
  width: min(100%, 460px);
  padding: 14px 14px 52px;
  background: var(--white);
  border: var(--border-pop);
  box-shadow: 10px 10px 0 var(--pop-sky);
  border-radius: 6px;
  transform: rotate(3deg);
  transition: transform 0.5s var(--ease-bounce), box-shadow 0.4s;
}
.about__photo:hover { transform: rotate(0.5deg) scale(1.03); box-shadow: 14px 14px 0 var(--pop-coral); }
.about__photo img { width: 100%; border-radius: 3px; }
.about__photo::before {
  content: "";
  position: absolute;
  top: -16px; left: 50%;
  width: 110px; height: 32px;
  transform: translateX(-50%) rotate(-4deg);
  background: rgba(255, 197, 63, 0.75);
  border: 1px solid rgba(51, 66, 29, 0.15);
}
.about__photo img.about__photo-mark {
  position: absolute;
  top: -26px; right: -26px;
  width: clamp(64px, 8vw, 96px);
  padding: 10px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--pop-sun);
  transform: rotate(12deg);
  transition: transform 0.5s var(--ease-boing);
}
.about__photo:hover .about__photo-mark { transform: rotate(-6deg) scale(1.12); }

.about__photo figcaption {
  margin-top: 0.9rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(51, 66, 29, 0.75);
}

/* ============================================================
   Facilities — sticker cards
   ============================================================ */
.facilities { background: var(--sun-soft); }

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3.2vw, 2.4rem);
}
@media (min-width: 721px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1051px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border: var(--border-pop);
  border-radius: 24px;
  overflow: hidden;
  transform: rotate(-1.3deg);
  box-shadow: 8px 8px 0 var(--pop-coral);
  transition: transform 0.5s var(--ease-boing), box-shadow 0.4s var(--ease-out);
}
.card:nth-child(3n+2) { transform: rotate(1.2deg); box-shadow: 8px 8px 0 var(--pop-sky); }
.card:nth-child(3n) { transform: rotate(-0.8deg); box-shadow: 8px 8px 0 var(--pop-sun); }
@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .card:nth-child(3n+2):hover,
  .card:nth-child(3n):hover {
    transform: rotate(0deg) translateY(-12px) scale(1.02);
  }
  .card:hover { box-shadow: 12px 14px 0 var(--pop-coral); }
  .card:nth-child(3n+2):hover { box-shadow: 12px 14px 0 var(--pop-sky); }
  .card:nth-child(3n):hover { box-shadow: 12px 14px 0 var(--pop-sun); }
  .card:hover .card__media img { transform: scale(1.08) rotate(1.5deg); }
  .card:hover .card__dot { animation: dot-bounce 0.55s var(--ease-bounce); }
}
@keyframes dot-bounce {
  0% { transform: scale(1); }
  45% { transform: scale(1.8); }
  100% { transform: scale(1); }
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: var(--border-pop);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
  transition: transform 0.6s var(--ease-out);
}

.card__body { padding: 1.4rem 1.5rem 1.6rem; }

.card__title {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  font-weight: 800;
}
.card__dot {
  flex: none;
  width: 0.68em; height: 0.68em;
  border-radius: 50%;
  border: 2px solid var(--ink);
}
.card__dot--coral { background: var(--coral); }
.card__dot--sun { background: var(--sun); }
.card__dot--ocean { background: var(--sky); }

.card__text {
  margin-top: 0.7rem;
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(51, 66, 29, 0.85);
}

/* ============================================================
   Pricing — tickets
   ============================================================ */
.pricing { background: var(--sky-pale); }

.price-list {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: 0.9rem;
}
.price-list__row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3em 1.5rem;
  padding: 1rem 1.4rem;
  background: var(--white);
  border: 2px dashed var(--ink);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--pop-sky);
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.3s;
}
.price-list__drink {
  display: inline-block;
  vertical-align: middle;
  margin: -0.5em 0 -0.5em 0.6em;
  width: clamp(28px, 3vw, 36px);
  height: auto;
  transform: rotate(16deg);
  transform-origin: 50% 85%;
  filter: drop-shadow(0 6px 10px rgba(51, 66, 29, 0.2));
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .price-list__drink { animation: drink-wobble 2.8s ease-in-out infinite; }
}
@keyframes drink-wobble {
  0%, 100% { transform: rotate(16deg); }
  50% { transform: rotate(6deg); }
}
.price-list__row:nth-child(even) { box-shadow: 5px 5px 0 var(--pop-sun); }
.price-list__row:hover { transform: translateX(6px) rotate(-0.5deg); }
.price-list__row dt {
  flex: 0 0 auto;
  min-width: 11em;
  font-weight: 800;
}
.price-list__row dd { margin: 0; }
.price-list__row strong {
  font-family: var(--font-display);
  font-size: 1.35em;
  font-weight: 800;
  color: var(--coral-deep);
}
.price-list__note {
  display: inline-block;
  margin-left: 0.6em;
  padding: 0.1em 0.8em;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.78em;
  font-weight: 700;
}

.member-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3.2vw, 2.4rem);
}
@media (min-width: 721px) { .member-grid { grid-template-columns: 1fr 1fr; } }

.member-card {
  position: relative;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  border: var(--border-pop);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--pop-sun);
  transform: rotate(-0.8deg);
  transition: transform 0.5s var(--ease-boing), box-shadow 0.4s;
}
.member-card--premium {
  background: linear-gradient(150deg, var(--sky-deep) 0%, var(--sky) 70%, #8FD4F2 110%);
  color: var(--white);
  box-shadow: 9px 9px 0 var(--pop-coral);
  transform: rotate(0.8deg);
}
@media (hover: hover) and (pointer: fine) {
  .member-card:hover { transform: rotate(0deg) translateY(-10px); }
  .member-card--premium:hover { transform: rotate(0deg) translateY(-10px); }
}

.member-card__label {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--sky-deep);
}
.member-card--premium .member-card__label { color: var(--sun); }
.member-card__badge {
  padding: 0.15em 0.9em;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
@media (prefers-reduced-motion: no-preference) {
  .member-card__badge { animation: badge-swing 2.6s ease-in-out infinite; }
}
@keyframes badge-swing {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg) translateY(-2px); }
}

.member-card__title {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
}

.member-card__price {
  margin-top: 0.9rem;
  font-family: var(--font-display);
}
.member-card__price strong {
  font-size: clamp(2rem, 1.7rem + 1.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--coral-deep);
}
.member-card--premium .member-card__price strong { color: var(--white); text-shadow: 2px 2px 0 rgba(51, 66, 29, 0.35); }
.member-card__price span { font-size: 0.95rem; font-weight: 700; margin-left: 0.2em; }

.member-card__features {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.55rem;
}
.member-card__features li {
  position: relative;
  padding-left: 1.6em;
  font-size: 0.9rem;
  font-weight: 600;
}
.member-card__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 0.7em; height: 0.7em;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--coral);
}
.member-card__features li:nth-child(2)::before { background: var(--sun); }
.member-card__features li:nth-child(3)::before { background: var(--grass); }
.member-card--premium .member-card__features li::before { border-color: rgba(255, 255, 255, 0.9); }

/* ============================================================
   How to use
   ============================================================ */
.howto { background: var(--paper); }

.howto__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 1051px) {
  .howto__grid { grid-template-columns: 1.15fr 1fr; }
}

.steps {
  display: grid;
  gap: clamp(1.7rem, 3vw, 2.6rem);
  counter-reset: step;
}
.step {
  display: flex;
  gap: clamp(1.1rem, 2.5vw, 1.7rem);
  align-items: flex-start;
}
.step__num {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.6rem, 3rem + 2vw, 4.8rem);
  aspect-ratio: 1;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  background: var(--coral);
  border: var(--border-pop);
  border-radius: 46% 54% 52% 48% / 54% 46% 54% 46%;
  box-shadow: 4px 4px 0 var(--pop-coral);
  transform: rotate(-6deg);
  transition: transform 0.5s var(--ease-boing), border-radius 0.5s var(--ease-out);
}
.step:nth-child(2) .step__num {
  color: var(--ink);
  background: var(--sun);
  border-radius: 54% 46% 48% 52% / 46% 54% 46% 54%;
  box-shadow: 4px 4px 0 var(--pop-sun);
  transform: rotate(5deg);
}
.step:nth-child(3) .step__num {
  background: var(--sky-deep);
  border-radius: 48% 52% 54% 46% / 52% 48% 52% 48%;
  box-shadow: 4px 4px 0 var(--pop-sky);
  transform: rotate(-4deg);
}
.step:hover .step__num { transform: rotate(0deg) scale(1.15); border-radius: 50%; }

.step__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.28rem);
  font-weight: 800;
}
.step__text {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: rgba(51, 66, 29, 0.85);
}

.howto__photo {
  border: var(--border-pop);
  border-radius: 44px 90px 48px 96px;
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--pop-grass);
}
@media (prefers-reduced-motion: no-preference) {
  .howto__photo { animation: photo-morph 14s ease-in-out infinite alternate; }
}
@keyframes photo-morph {
  0% { border-radius: 44px 90px 48px 96px; }
  50% { border-radius: 84px 48px 92px 44px; }
  100% { border-radius: 52px 96px 44px 84px; }
}
.howto__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.06); }

/* ============================================================
   Access
   ============================================================ */
.access { background: var(--coral-soft); }

.access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 1051px) {
  .access__grid { grid-template-columns: 1.1fr 1fr; }
}

.access__text { margin-top: 1.4rem; }

.access__info { margin-top: 1.8rem; }
.access__info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 1.2rem;
  padding: 0.85rem 0.3rem;
  border-bottom: 2px dashed rgba(51, 66, 29, 0.35);
}
.access__info-row dt {
  flex: 0 0 auto;
  min-width: 5.5em;
  font-weight: 800;
}
.access__info-row dd { margin: 0; flex: 1 1 14em; }

.access__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}
.access__links .text-link { margin-top: 0; }

.access__sun {
  display: inline-block;
  width: 0.7em; height: 0.7em;
  margin-left: 0.25em;
  vertical-align: baseline;
  color: var(--sun-deep);
}
@media (prefers-reduced-motion: no-preference) {
  .access__sun { animation: sun-pulse 3.2s ease-in-out infinite; }
}
@keyframes sun-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.3) rotate(16deg); opacity: 1; }
}

/* ---------- Slider ---------- */
.slider {
  position: relative;
  border: var(--border-pop);
  border-radius: 88px 42px 92px 46px;
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--pop-sky);
  background: var(--ink);
}

.slider__track {
  position: relative;
  aspect-ratio: 4 / 3;
}
.slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slider__slide.is-active { opacity: 1; z-index: 1; }
.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06);
}
@media (prefers-reduced-motion: no-preference) {
  .slider__slide.is-active img { animation: slide-zoom 6s ease-out forwards; }
}
@keyframes slide-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.05rem;
  box-shadow: 0 3px 0 var(--ink);
  transition: background-color 0.3s, transform 0.3s var(--ease-bounce);
}
.slider__btn:hover { background: var(--sun); transform: translateY(-50%) scale(1.12); }
.slider__btn--prev { left: 16px; }
.slider__btn--next { right: 16px; }

.slider__dots {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.slider__dot {
  width: 13px; height: 13px;
  padding: 0;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  transition: background-color 0.3s, transform 0.3s var(--ease-bounce);
}
.slider__dot[aria-pressed="true"] { background: var(--sun); transform: scale(1.3); }
.slider__dot:hover { background: var(--white); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--mint); }

.faq-list {
  display: grid;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border: var(--border-pop);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--pop-grass);
  overflow: hidden;
  transition: transform 0.45s var(--ease-bounce), box-shadow 0.35s;
}
.faq-item:nth-child(even) { box-shadow: 5px 5px 0 var(--pop-sky); }
.faq-item:has(.faq-item__q[aria-expanded="true"]) {
  transform: scale(1.015) rotate(-0.3deg);
  box-shadow: 8px 8px 0 var(--pop-sun);
}
.faq-item__heading { font-size: inherit; font-weight: inherit; line-height: inherit; }

.faq-item__q {
  display: flex;
  align-items: center;
  gap: 0.9em;
  width: 100%;
  padding: 1.1rem 1.3rem;
  text-align: left;
  font-weight: 800;
  font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1rem);
  line-height: 1.6;
  transition: background-color 0.25s;
}
.faq-item__q:hover { background: var(--sun-soft); }
.faq-item__q:focus-visible { outline-offset: -3px; }

.faq-item__mark {
  flex: none;
  width: 1.95em; height: 1.95em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  transition: background-color 0.3s, color 0.3s;
}
.faq-item:nth-child(2) .faq-item__mark { background: var(--sun); color: var(--ink); }
.faq-item:nth-child(3) .faq-item__mark { background: var(--sky); color: var(--ink); }
.faq-item:nth-child(4) .faq-item__mark { background: var(--grass); color: var(--white); }
.faq-item:nth-child(5) .faq-item__mark { background: var(--sun); color: var(--ink); }
.faq-item:nth-child(6) .faq-item__mark { background: var(--sky); color: var(--ink); }
.faq-item__q[aria-expanded="true"] .faq-item__mark {
  animation: mark-pop 0.5s var(--ease-bounce);
}
@keyframes mark-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35) rotate(-10deg); }
  100% { transform: scale(1); }
}

.faq-item__toggle {
  flex: none;
  position: relative;
  width: 16px; height: 16px;
  margin-left: auto;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-bounce);
}
.faq-item__toggle::before { width: 16px; height: 3px; }
.faq-item__toggle::after { width: 3px; height: 16px; }
.faq-item__q[aria-expanded="true"] .faq-item__toggle::after { transform: rotate(90deg); }

.js .faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item__a p {
  padding: 0.2rem 1.3rem 1.3rem calc(1.3rem + 1.95em + 0.9em);
  font-size: 0.9rem;
  color: rgba(51, 66, 29, 0.88);
}
@media (max-width: 720px) {
  .faq-item__a p { padding-left: 1.3rem; }
}

/* ============================================================
   Contact CTA — aloha sunset
   ============================================================ */
.contact {
  position: relative;
  background: linear-gradient(180deg, #FFD66B 0%, #FFA45C 48%, #F2698A 100%);
  color: var(--ink);
  overflow: hidden;
}

.contact__sunset {
  position: absolute;
  left: 50%;
  bottom: -6vw;
  transform: translateX(-50%);
  width: clamp(240px, 34vw, 480px);
  aspect-ratio: 2 / 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #FFE9A8, #FFC53F);
  border: var(--border-pop);
  border-bottom: 0;
  opacity: 0.9;
  pointer-events: none;
}

.contact__palm {
  position: absolute;
  bottom: -8px;
  z-index: 1;
  width: clamp(120px, 18vw, 260px);
  color: var(--ink);
  opacity: 0.92;
  pointer-events: none;
}
.contact__palm--left { left: -2vw; }
.contact__palm--right { right: -2vw; transform: scaleX(-1); }
.contact__palm img { width: 100%; height: auto; display: block; filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.25)); }
@media (prefers-reduced-motion: no-preference) {
  .contact__palm img { animation: palm-sway 5.5s ease-in-out infinite alternate; transform-origin: 50% 100%; }
  .contact__palm--right img { animation-delay: -2.5s; }
}
@keyframes palm-sway {
  from { transform: rotate(-2.5deg); }
  to { transform: rotate(2.5deg); }
}

.contact__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(4.5rem, 9vw, 8rem) clamp(6rem, 12vw, 9.5rem);
  text-align: center;
}
.contact .section-title {
  color: var(--white);
  text-shadow:
    2.5px 2.5px 0 var(--ink),
    -1.5px -1.5px 0 var(--ink), 1.5px -1.5px 0 var(--ink), -1.5px 1.5px 0 var(--ink);
  transform: rotate(-1deg);
}
.contact__text {
  max-width: 560px;
  margin: 1.5rem auto 0;
  font-weight: 700;
}
.contact__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.contact .btn--coral { background: var(--ink); color: var(--white); }
.contact .btn--coral:hover { background: #22300F; }
.contact .btn--outline:hover { background: var(--sun); }
.contact__mail { margin-top: 2rem; font-size: 0.95rem; }
.contact__mail a {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.06em;
  border-bottom: 2.5px solid rgba(51, 66, 29, 0.5);
  padding-bottom: 2px;
}
.contact__mail a:hover { border-color: currentColor; }

/* grass strip at the very bottom of contact, melts into footer */
.contact__grass {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 3;
  height: clamp(36px, 5.8vw, 76px);
  background-image: url("../assets/img/deco-grass-shiba.png");
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: auto 100%;
  pointer-events: none;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #22300F;
  color: rgba(255, 253, 246, 0.9);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.8rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
  justify-content: space-between;
  padding-bottom: 2.2rem;
  border-bottom: 2px dashed rgba(255, 253, 246, 0.25);
}

.site-footer__logo {
  width: 300px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.site-footer__address { margin-top: 1.1rem; font-size: 0.85rem; }

.site-footer__sns {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.9rem;
  color: var(--sun);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.35s var(--ease-bounce), color 0.3s;
}
.site-footer__sns .icon { width: 1.25em; height: 1.25em; }
.site-footer__sns:hover { color: var(--white); transform: translateY(-2px) rotate(-1deg); }

.site-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.6rem 2.5rem;
}
@media (max-width: 720px) {
  .site-footer__nav ul { grid-template-columns: 1fr; }
}
.site-footer__nav a {
  color: rgba(255, 253, 246, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
}
.site-footer__nav a:hover { color: var(--sun); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.6rem;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
}
.site-footer__legal a {
  color: rgba(255, 253, 246, 0.65);
  font-size: 0.78rem;
}
.site-footer__legal a:hover { color: var(--white); }
.site-footer__copy { font-size: 0.78rem; color: rgba(255, 253, 246, 0.65); }

/* ============================================================
   Scroll reveal — big bouncy pops
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(46px) scale(0.92) rotate(0.8deg);
  transition: opacity 0.7s var(--ease-out), transform 0.95s var(--ease-bounce);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
/* sticker cards keep their resting tilt after reveal */
.js .card.reveal.is-visible { transform: rotate(-1.3deg); }
.js .card.reveal.is-visible:nth-child(3n+2) { transform: rotate(1.2deg); }
.js .card.reveal.is-visible:nth-child(3n) { transform: rotate(-0.8deg); }
.js .member-card.reveal.is-visible { transform: rotate(-0.8deg); }
.js .member-card--premium.reveal.is-visible { transform: rotate(0.8deg); }
.js .about__photo.reveal.is-visible { transform: rotate(3deg); }

.js .reveal-stagger .reveal:nth-child(2) { transition-delay: 0.12s; }
.js .reveal-stagger .reveal:nth-child(3) { transition-delay: 0.24s; }
.js .reveal-stagger .reveal:nth-child(4) { transition-delay: 0.1s; }
.js .reveal-stagger .reveal:nth-child(5) { transition-delay: 0.22s; }
.js .reveal-stagger .reveal:nth-child(6) { transition-delay: 0.34s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal-hero {
    transition-duration: 0.25s;
    transform: none;
  }
  .js.has-split .hero__title .tchar { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   Decorative organic blobs
   ============================================================ */
.blob {
  position: absolute;
  z-index: 0;
  border-radius: 58% 42% 55% 45% / 52% 55% 45% 48%;
  pointer-events: none;
}
.blob--sun { background: rgba(255, 197, 63, 0.3); }
.blob--coral { background: rgba(255, 123, 90, 0.22); }
.blob--ocean { background: rgba(89, 190, 234, 0.28); }
.blob--grass { background: rgba(125, 194, 66, 0.24); }
@media (prefers-reduced-motion: no-preference) {
  .blob { animation: blob-morph 12s ease-in-out infinite alternate; }
}
@keyframes blob-morph {
  0% {
    border-radius: 58% 42% 55% 45% / 52% 55% 45% 48%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    border-radius: 45% 55% 48% 52% / 55% 45% 58% 42%;
    transform: translate(18px, -20px) rotate(9deg) scale(1.08);
  }
  100% {
    border-radius: 52% 48% 42% 58% / 45% 52% 48% 55%;
    transform: translate(-16px, 14px) rotate(-8deg);
  }
}

/* ============================================================
   Paw cursor trail
   ============================================================ */
.paw-trail {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  overflow: hidden;
}
.paw-trail__paw {
  position: absolute;
  width: 22px; height: 22px;
  color: var(--coral);
  opacity: 0;
  animation: paw-fade 1.35s ease-out forwards;
}
.paw-trail__paw svg { width: 100%; height: 100%; }
@keyframes paw-fade {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.7) rotate(var(--paw-rot, 0deg)); }
  25% { opacity: 0.75; transform: translate(-50%, -50%) scale(1) rotate(var(--paw-rot, 0deg)); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1) rotate(var(--paw-rot, 0deg)); }
}
