:root {
  --section-wave-height: clamp(56px, 12vw, 132px);
  --color-surface: #fafaf5;
  --color-surface-warm: #fbfbf3;
  --color-surface-card: #ffffff;
  --color-surface-container: #eeeee9;
  --color-surface-field: #f3f7ee;
  --color-flow-beige: #f4e3c5;
  --color-about-sky: #e5f4ed;
  --color-text: #1a1c19;
  --color-text-muted: #3f4a3c;
  --color-outline: #becab9;
  --color-grass: #3f9d52;
  --color-grass-rgb: 63, 157, 82;
  --color-fresh: #4bae4f;
  --color-menu-grass: var(--color-grass);
  --color-lime: #dded49;
  --color-wood: #75584d;
  --color-soft-wood: #b59387;
  --color-caution: #8a6634;
  --shadow-soft: 0 14px 36px rgba(117, 88, 77, 0.07);
  --shadow-touch: 0 10px 24px rgba(117, 88, 77, 0.08);
  --shadow-card: 0 10px 26px rgba(117, 88, 77, 0.045);
  --shadow-card-hover: 0 14px 30px rgba(117, 88, 77, 0.075);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-news-card: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --space-page: clamp(16px, 4vw, 48px);
  --max-width: 1200px;
  --font-base: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-cta: "BIZ UDPGothic", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-rounded: "M PLUS Rounded 1c", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Lora", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-surface-warm);
  color: var(--color-text);
  font-family: var(--font-base);
  font-weight: 500;
  line-height: 1.7;
}

body.home-page,
body.site-end-page,
body.member-detail-page {
  background: var(--color-grass);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: none;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(221, 237, 73, 0.95);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
dl,
dd,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  font-weight: 900;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.2;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.25;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.35;
}

p {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-text);
  color: var(--color-surface-card);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(190, 202, 185, 0.48);
  background: rgba(250, 250, 245, 0.94);
  backdrop-filter: blur(16px);
}

.home-page .site-header {
  position: absolute;
  right: 0;
  left: 0;
  border-bottom-color: transparent;
  background: transparent;
  color: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.home-page .brand {
  display: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px var(--space-page);
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
  font-weight: 800;
}

.brand__mark,
.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand__wordmark {
  width: clamp(138px, 14vw, 176px);
  max-width: 44vw;
  height: auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
}

.nav-toggle__line {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__line:nth-child(2) {
  transform: translateY(-7px);
}

.nav-toggle__line:nth-child(4) {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(4) {
  transform: rotate(-45deg);
}

.site-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 12px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav {
  flex-wrap: nowrap;
}

.site-nav__panel,
.site-nav__links {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: flex-end;
  gap: inherit;
}

.site-nav__actions {
  display: none;
}

.site-nav a,
.footer-nav a {
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-nav a:hover {
  color: var(--color-grass);
}

.home-page .brand__wordmark {
  filter: brightness(0) invert(1);
}

.home-page .nav-toggle,
.home-page .site-nav {
  color: rgba(255, 255, 255, 0.92);
}

.home-page .site-nav a:hover,
.home-page .site-nav a[aria-current="page"] {
  color: var(--color-lime);
}

@media (min-width: 981px) {
  .home-page .site-header {
    display: none;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    url("../assets/images/hero/hero-main.jpg") center top / cover no-repeat,
    #142012;
}

.hero__inner {
  max-width: none;
  margin: 0;
}

.hero__panel {
  position: relative;
  min-height: clamp(560px, 78svh, 780px);
  overflow: hidden;
  border-radius: 0;
  background: #142012;
  box-shadow: none;
  isolation: isolate;
}

.hero__panel::before,
.hero__panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero__panel::before {
  display: block;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08) 32%, rgba(0, 0, 0, 0.26) 62%, rgba(0, 0, 0, 0.76));
}

.hero__panel::after {
  display: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__tagline {
  position: absolute;
  top: calc(76px + env(safe-area-inset-top));
  left: 0;
  z-index: 2;
  max-width: min(78vw, 560px);
  margin: 0;
  padding: 12px clamp(22px, 5vw, 42px) 13px;
  border-radius: 0 16px 16px 0;
  background: var(--color-grass);
  color: #ffffff;
  font-family: var(--font-cta);
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(0, 41, 10, 0.18);
  opacity: 0;
  transform: translate3d(-110%, 0, 0);
  animation: hero-tagline-slide-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  will-change: opacity, transform;
}

@keyframes hero-tagline-slide-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(104px + env(safe-area-inset-top)) var(--space-page) clamp(64px, 10vw, 124px);
}

.hero__wordmark {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 0 18px;
}

.hero__photo {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 8px 0 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero__kicker {
  margin-bottom: 18px;
  color: var(--color-grass);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 900;
}

.hero__lead,
.page-hero p,
.prose,
.info-card p,
.event-card p,
.report-card p,
.step-card p,
.member-card p,
.cta-band p,
.site-footer p,
.list-panel p,
.faq-list p {
  color: var(--color-text-muted);
}

.hero__title {
  max-width: 560px;
  margin-bottom: 0;
}

.hero__title-image {
  display: block;
  width: min(78vw, 580px);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.28));
}

.has-hero-title-animation .hero__title-image {
  opacity: 0;
  transform: translate3d(0, 64px, 0);
}

.has-hero-title-animation.has-hero-title-ready .hero__title-image {
  transition:
    opacity 1.45s ease,
    transform 1.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.has-hero-title-animation .hero__title-image.is-hero-title-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.has-hero-title-animation .hero__title-image.is-hero-title-complete {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.hero__lead {
  max-width: 560px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 700;
}

.hero__lead p + p {
  margin-top: 22px;
}

.hero__intro-text p + p {
  margin-top: 18px;
}

.hero__intro {
  position: relative;
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  max-width: none;
  margin-top: calc(clamp(16px, 4vw, 44px) * -1);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(56px, 9vw, 96px) var(--space-page) clamp(64px, 10vw, 112px);
  border: 0;
  border-radius: clamp(28px, 5vw, 48px) clamp(28px, 5vw, 48px) 0 0;
  background: var(--color-flow-beige);
  box-shadow: 0 -18px 42px rgba(20, 32, 18, 0.18);
  text-align: center;
}

.hero__intro::before,
.hero__intro::after {
  display: none;
}

.hero__intro > * {
  position: relative;
  z-index: 1;
}

.hero__intro-heading {
  width: 100%;
  max-width: 760px;
  margin-bottom: 0;
  text-align: left;
}

.hero__intro-heading h2 {
  color: var(--color-text);
  margin-bottom: 18px;
}

.hero__intro-heading h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-cta);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero__intro-text {
  max-width: 680px;
  color: var(--color-text-muted);
  font-family: var(--font-cta);
  font-size: clamp(0.8rem, 1.25vw, 0.9rem);
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}

.hero__intro-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.hero-image-stream {
  --hero-stream-size: clamp(112px, 22vw, 184px);
  --hero-stream-gap: 0;
  justify-self: center;
  min-width: 0;
  width: 100vw;
  max-width: 100vw;
  margin: clamp(34px, 7vw, 64px) 0 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.hero-image-stream__viewport {
  overflow: hidden;
  width: 100%;
  padding-block: 2px;
}

.hero-image-stream__track {
  display: flex;
  width: max-content;
  animation: hero-image-stream 46s linear infinite;
  will-change: transform;
}

.hero-image-stream__group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--hero-stream-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-image-stream__item {
  flex: 0 0 auto;
  width: var(--hero-stream-size);
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.hero-image-stream__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-stream__item:nth-child(4n + 1) {
  background:
    linear-gradient(135deg, rgba(221, 237, 73, 0.28), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.2);
}

.hero-image-stream__item:nth-child(4n + 2) {
  background:
    linear-gradient(135deg, rgba(229, 244, 237, 0.48), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.18);
}

.hero-image-stream__item:nth-child(4n + 3) {
  background:
    linear-gradient(135deg, rgba(181, 147, 135, 0.26), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.18);
}

@keyframes hero-image-stream {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__tagline {
    opacity: 1;
    transform: none;
    animation: none;
    will-change: auto;
  }

  .hero-image-stream__track {
    animation: none;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__button {
  min-height: 58px;
  padding: 14px 26px;
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.hero__button--light {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}

.hero-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(117, 88, 77, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 245, 0.96)),
    var(--color-surface-card);
  box-shadow: var(--shadow-soft);
}

.hero-card::before {
  display: block;
  width: 58px;
  height: 6px;
  margin-bottom: 18px;
  border-radius: var(--radius-pill);
  background: var(--color-soft-wood);
  content: "";
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-cta);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-shadow: none;
}

.button.is-loading {
  cursor: progress;
}

.button:disabled,
.button[aria-disabled="true"] {
  opacity: 0.56;
  cursor: not-allowed;
}

.button.is-loading::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  animation: button-loading-spin 0.8s linear infinite;
}

.button--primary {
  background: var(--color-grass);
  color: #ffffff;
  box-shadow: var(--shadow-touch);
}

.button--secondary {
  border-color: rgba(117, 88, 77, 0.32);
  background: var(--color-surface-card);
  color: var(--color-wood);
}

.button--danger {
  border-color: rgba(174, 48, 48, 0.24);
  background: rgba(174, 48, 48, 0.08);
  color: #9d2727;
}

.button.button--pill-large {
  width: min(82vw, 320px);
  min-height: 60px;
  padding: 14px 32px;
  font-size: clamp(1.08rem, 2.8vw, 1.22rem);
  white-space: nowrap;
}

.button--green {
  border-color: transparent;
  background: var(--color-grass);
  color: #ffffff;
  box-shadow: var(--shadow-touch);
}

.button--outline-black {
  border: 2px solid #000000;
  background: #ffffff;
  color: #000000;
}

.button--with-icon {
  gap: clamp(28px, 7vw, 42px);
}

.button--with-icon .button__icon {
  width: 24px;
  height: 24px;
  margin: 0;
  flex: 0 0 auto;
}

.button--with-icon span {
  display: block;
  width: auto;
  text-align: left;
}

.button--outline-black .button__icon {
  filter: brightness(0);
}

@keyframes button-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.guide-cta {
  position: relative;
  display: grid;
  justify-items: center;
  max-width: 730px;
  margin: 56px auto 0;
  padding: 0 clamp(66px, 9vw, 96px);
}

.guide-cta__board {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(96px, 12vw, 122px);
  padding: 22px clamp(42px, 5vw, 68px);
  border: 0;
  background-image: url("../assets/images/ui/wooden-cta-board.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: #2f1c11;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 241, 204, 0.82);
  filter: drop-shadow(0 16px 18px rgba(117, 88, 77, 0.18));
  transform: rotate(-0.4deg);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.guide-cta__board:hover,
.guide-cta__board:focus-visible {
  filter: drop-shadow(0 20px 22px rgba(117, 88, 77, 0.22));
  transform: translateY(-2px) rotate(-0.4deg);
}

.guide-cta__board span,
.guide-cta__board small {
  display: block;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.guide-cta__board span {
  font-size: clamp(1.05rem, 3.6vw, 1.5rem);
  font-weight: 900;
  line-height: 1.3;
}

.guide-cta__board small {
  margin-top: 4px;
  color: rgba(47, 28, 17, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
}

.guide-cta__mascot {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: clamp(116px, 14vw, 142px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 10px 12px rgba(117, 88, 77, 0.16));
  pointer-events: none;
}

.guide-cta__mascot--left {
  left: 0;
  transform: translateY(-50%) rotate(-3deg);
}

.guide-cta__mascot--right {
  right: 0;
  transform: translateY(-50%) rotate(3deg);
}

.button-row--sub-actions {
  justify-content: center;
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: var(--color-grass);
  font-weight: 800;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
}

.text-nowrap {
  white-space: nowrap;
}

.section,
.page-hero,
.cta-band {
  padding: 72px var(--space-page);
}

.section {
  background: var(--color-surface-warm);
}

#about {
  position: relative;
  z-index: 2;
  margin-top: calc(clamp(24px, 5vw, 44px) * -1);
  overflow: hidden;
  border-radius: clamp(28px, 5vw, 48px) clamp(28px, 5vw, 48px) 0 0;
  background: var(--color-about-sky);
  box-shadow: 0 -18px 42px rgba(20, 32, 18, 0.14);
}

#about::before {
  display: none;
}

.section--muted {
  background: var(--color-surface-field);
}

#schedule {
  padding-bottom: calc(var(--section-wave-height) + clamp(64px, 8vw, 104px));
}

#news,
#members,
#partners {
  background: #fffefb;
}

#flow {
  position: relative;
  z-index: 1;
  padding-bottom: calc(72px + clamp(28px, 6vw, 72px));
  background: var(--color-flow-beige);
}

#faq {
  padding-bottom: clamp(12px, 3vw, 24px);
  background: var(--color-flow-beige);
}

#flow::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  z-index: 0;
  height: var(--section-wave-height);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='%23f4e3c5' d='M0 84C240 18 480 18 720 84C960 150 1200 150 1440 84V160H0Z'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

#activity {
  position: relative;
  z-index: 1;
}

#activity::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  z-index: 0;
  height: var(--section-wave-height);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='%23f3f7ee' d='M0 84C240 18 480 18 720 84C960 150 1200 150 1440 84V160H0Z'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

#partners {
  padding-bottom: calc(72px + clamp(32px, 7vw, 88px));
}

.section__inner,
.page-hero__inner,
.cta-band__inner,
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero {
  border-bottom: 0;
  background: var(--color-surface-field);
}

.page-hero__inner {
  max-width: 900px;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.06rem;
}

.eyebrow,
.section__label,
.card-kicker {
  margin-bottom: 10px;
  color: var(--color-wood);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h1,
.section-heading h2,
.split-layout > div:first-child > h2,
.page-hero h1,
.cta-band h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-cta);
  font-weight: 700;
}

.section-heading h1,
.section-heading h2,
.split-layout > div:first-child > h2,
.cta-band h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 5vw, 3.2rem);
}

.cta-band .section__label,
.cta-band h2 {
  font-family: var(--font-cta);
  font-weight: 700;
}

.section-heading h1::after,
.section-heading h2::after,
.split-layout > div:first-child > h2::after,
.page-hero h1::after,
.cta-band h2::after {
  display: block;
  width: 64px;
  height: 5px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--color-lime);
  content: "";
}

.has-heading-line-animation .section-heading h2::after,
.has-heading-line-animation .split-layout > div:first-child > h2::after,
.has-heading-line-animation .page-hero h1::after,
.has-heading-line-animation .cta-band h2::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.has-heading-line-animation .section-heading h2.is-line-visible::after,
.has-heading-line-animation .split-layout > div:first-child > h2.is-line-visible::after,
.has-heading-line-animation .page-hero h1.is-line-visible::after,
.has-heading-line-animation .cta-band h2.is-line-visible::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .has-heading-line-animation .section-heading h2::after,
  .has-heading-line-animation .split-layout > div:first-child > h2::after,
  .has-heading-line-animation .page-hero h1::after,
  .has-heading-line-animation .cta-band h2::after {
    transform: none;
    transition: none;
  }
}

.section-heading--with-link {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 20px;
}

@media (min-width: 981px) {
  .section-heading:not(.section-heading--with-link) {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .section-heading:not(.section-heading--with-link) h2::after {
    margin-right: auto;
    margin-left: auto;
  }

  .section-heading:not(.section-heading--with-link) h1::after {
    margin-right: auto;
    margin-left: auto;
  }

  .section-heading:not(.section-heading--with-link) .section-lead {
    margin-right: auto;
    margin-left: auto;
  }
}

.hero__intro .hero__intro-heading {
  text-align: left;
}

.hero__intro .hero__intro-heading h2::after {
  margin-right: 0;
  margin-left: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
}

.prose {
  display: grid;
  gap: 18px;
  font-size: 0.875rem;
}

.about-prose {
  max-width: 1060px;
  margin-right: auto;
  margin-left: auto;
  gap: clamp(44px, 7vw, 78px);
  text-align: center;
}

.about-story {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
}

.about-prose__text {
  display: grid;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  gap: 18px;
  text-align: left;
}

.about-photo-collage {
  display: grid;
  grid-template-columns: minmax(0, 2.25fr) minmax(180px, 0.95fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  min-height: clamp(280px, 44vw, 560px);
}

.about-photo-collage--reverse {
  grid-template-columns: minmax(180px, 0.95fr) minmax(0, 2.25fr);
}

.about-photo-collage__item {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(117, 88, 77, 0.12);
  border-radius: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(221, 237, 73, 0.18)),
    rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-soft);
}

.about-photo-collage__item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-collage__item--large {
  grid-row: 1 / span 2;
}

.about-photo-collage--reverse .about-photo-collage__item--large {
  grid-column: 2;
}

.about-photo-collage:not(.about-photo-collage--reverse) .about-photo-collage__item:not(.about-photo-collage__item--large) {
  grid-column: 2;
}

.about-photo-collage--reverse .about-photo-collage__item:not(.about-photo-collage__item--large) {
  grid-column: 1;
}

.about-wide-illustration {
  width: 100vw;
  margin: clamp(34px, 7vw, 72px) 0 -72px calc(50% - 50vw);
  overflow: hidden;
  background: var(--color-about-sky);
}

.about-wide-illustration img {
  width: 100%;
  min-height: clamp(180px, 34vw, 520px);
  object-fit: cover;
  object-position: center bottom;
}

@media (min-width: 981px) {
  .about-prose {
    max-width: 1120px;
    gap: clamp(56px, 7vw, 88px);
  }

  .about-story {
    grid-template-columns: minmax(300px, 0.88fr) minmax(420px, 1.12fr);
    align-items: center;
    gap: clamp(36px, 5vw, 64px);
    text-align: left;
  }

  .about-story:nth-child(even) {
    grid-template-columns: minmax(420px, 1.12fr) minmax(300px, 0.88fr);
  }

  .about-story:nth-child(even) .about-prose__text {
    order: 2;
  }

  .about-story:nth-child(even) .about-photo-collage {
    order: 1;
  }

  .about-prose__text {
    max-width: 430px;
    margin: 0;
  }

  .about-photo-collage,
  .about-photo-collage--reverse {
    gap: clamp(10px, 1.2vw, 16px);
    min-height: clamp(250px, 26vw, 340px);
  }

  .about-photo-collage {
    grid-template-columns: minmax(0, 1.9fr) minmax(112px, 0.95fr);
  }

  .about-photo-collage--reverse {
    grid-template-columns: minmax(112px, 0.95fr) minmax(0, 1.9fr);
  }
}

.has-about-collage-animation .about-photo-collage__item {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.has-about-collage-animation .about-photo-collage__item.is-about-collage-visible {
  animation: about-collage-fade-in 0.76s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--about-collage-index, 0) * 90ms);
}

@keyframes about-collage-fade-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.card-grid,
.step-grid,
.member-grid {
  display: grid;
  gap: 18px;
}

.card-grid--three,
.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.event-card,
.report-card,
.step-card {
  border: 1px solid rgba(117, 88, 77, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.info-card,
.event-card,
.report-card,
.step-card {
  padding: 22px;
}

.event-card,
.report-card,
.info-card,
.step-card {
  display: flex;
  flex-direction: column;
}

.event-card .button,
.report-card .button {
  margin-top: auto;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 14px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(var(--color-grass-rgb), 0.18);
  border-radius: 999px;
  background: rgba(221, 237, 73, 0.45);
  color: var(--color-grass);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.chip--neutral {
  border-color: rgba(117, 88, 77, 0.18);
  background: rgba(181, 147, 135, 0.16);
  color: var(--color-wood);
}

.detail-list,
.mini-list {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.mini-list {
  margin: 18px 0;
}

.detail-list div,
.mini-list div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(190, 202, 185, 0.64);
}

dt {
  color: var(--color-wood);
  font-size: 0.84rem;
  font-weight: 800;
}

dd {
  margin-left: 0;
  color: var(--color-text-muted);
}

.list-panel,
.faq-list {
  display: grid;
  gap: 0;
  border: 1px solid rgba(117, 88, 77, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.list-panel--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-panel > div,
.faq-list > article {
  padding: 22px;
  border-bottom: 1px solid rgba(190, 202, 185, 0.5);
}

.list-panel > div:last-child,
.faq-list > article:last-child {
  border-bottom: 0;
}

.faq-accordion {
  gap: 12px;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  list-style: none;
}

@media (min-width: 981px) {
  #faq .faq-accordion {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
  }
}

.faq-accordion > li {
  margin: 0;
}

.faq-accordion__item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.faq-accordion__item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  gap: 12px;
  align-items: center;
  min-height: 60px;
  padding: 14px 16px 14px 18px;
  cursor: pointer;
  list-style: none;
}

.faq-accordion__item summary::-webkit-details-marker {
  display: none;
}

.faq-accordion__item summary::after {
  justify-self: center;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-text);
  border-bottom: 2px solid var(--color-text);
  content: "";
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-accordion__item[open] summary::after {
  transform: rotate(225deg);
}

.faq-accordion__item summary:focus-visible {
  outline: 3px solid rgba(221, 237, 73, 0.95);
  outline-offset: 3px;
}

.faq-accordion__item h3 {
  margin-bottom: 0;
  font-size: clamp(0.98rem, 2.2vw, 1.08rem);
  line-height: 1.45;
}

.faq-accordion__item p {
  padding: 0 18px 18px;
  font-size: 0.96rem;
  line-height: 1.75;
}

.faq-illustration {
  display: flex;
  justify-content: center;
  margin: clamp(32px, 7vw, 72px) auto 0;
}

.faq-illustration img {
  display: block;
  width: min(100%, 760px);
  height: auto;
}

.list-panel--two > div {
  border-right: 1px solid rgba(190, 202, 185, 0.5);
  border-bottom: 0;
}

.list-panel--two > div:last-child {
  border-right: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  color: var(--color-text-muted);
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-grass);
  content: "";
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(181, 147, 135, 0.18);
  color: var(--color-wood);
  font-weight: 900;
}

#flow .step-grid {
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: center;
  gap: 22px 14px;
}

#flow .step-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(117, 88, 77, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 30px rgba(117, 88, 77, 0.06);
}

.has-flow-step-animation #flow .step-card,
.has-flow-step-animation #flow .flow-notes {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.58s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--flow-step-index, 0) * 90ms);
}

.has-flow-step-animation #flow .step-card.is-flow-step-visible,
.has-flow-step-animation #flow .flow-notes.is-flow-step-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.has-schedule-card-animation #schedule .schedule-event-card {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.58s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--schedule-card-index, 0) * 90ms);
}

.has-schedule-card-animation #schedule .schedule-event-card.is-schedule-card-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .has-flow-step-animation #flow .step-card,
  .has-flow-step-animation #flow .flow-notes {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .has-schedule-card-animation #schedule .schedule-event-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .has-about-collage-animation .about-photo-collage__item {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .has-hero-title-animation .hero__title-image {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.flow-step-arrow {
  display: grid;
  width: 44px;
  min-height: 52px;
  place-items: center;
  color: var(--color-wood);
}

.flow-step-arrow::before {
  color: var(--color-wood);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  content: "→";
}

#flow .step-card__icon {
  width: 88px;
  aspect-ratio: 1;
  object-fit: contain;
}

#flow .step-card__body {
  display: grid;
  gap: 12px;
}

#flow .step-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

#flow .step-card__heading h3 {
  margin-bottom: 0;
  white-space: nowrap;
}

#flow .step-card__number {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  background: rgba(117, 88, 77, 0.12);
}

#flow .step-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.report-card__visual {
  display: grid;
  min-height: 160px;
  margin: -22px -22px 20px;
  place-items: center;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--color-surface-field);
  box-shadow: inset 0 0 0 1px rgba(190, 202, 185, 0.34);
  color: var(--color-wood);
  font-weight: 900;
}

.report-card__visual--soft {
  background: rgba(75, 174, 79, 0.12);
}

.report-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(100%, 980px);
  margin-inline: auto;
}

.report-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-news-card);
  touch-action: pan-y;
}

.report-carousel__track {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.6s ease;
  will-change: transform;
}

.report-carousel__slide {
  flex: 0 0 calc((100% - 18px * 2) / 3);
}

.report-news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(117, 88, 77, 0.12);
  border-radius: var(--radius-news-card);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.report-news-card:hover,
.report-news-card:focus-visible {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.report-news-card__visual {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-news-card) var(--radius-news-card) 0 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(190, 202, 185, 0.34);
}

.report-news-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.report-news-card__visual--soft {
  background: rgba(75, 174, 79, 0.06);
}

.report-news-card__visual--wood {
  background: rgba(181, 147, 135, 0.08);
}

.report-news-card__visual--lime {
  background: rgba(221, 237, 73, 0.1);
}

.report-news-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px 18px;
}

.report-news-card__date {
  color: var(--color-wood);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.report-news-card__title {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.report-carousel--peek .report-carousel__slide {
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.report-carousel--peek .report-carousel__slide.is-active {
  opacity: 1;
  cursor: default;
}

.report-carousel--peek.is-dragging .report-carousel__track {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .report-carousel__track,
  .report-carousel--peek .report-carousel__slide {
    transition: none;
  }
}

.activity-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(96px, 10vw, 148px);
  grid-auto-flow: dense;
  gap: 12px;
}

.activity-grid__item {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface-field);
  box-shadow: inset 0 0 0 1px rgba(190, 202, 185, 0.28);
}

.activity-grid__item--large {
  grid-column: span 3;
  grid-row: span 3;
}

.activity-grid__item--wide {
  grid-column: span 3;
  grid-row: span 2;
}

.activity-grid__item--tall {
  grid-column: span 2;
  grid-row: span 3;
}

.activity-grid__item--medium {
  grid-column: span 2;
  grid-row: span 2;
}

.activity-grid__item--small {
  grid-column: span 1;
  grid-row: span 2;
}

.activity-grid__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.has-activity-grid-animation .activity-grid__item {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.98);
  transition:
    opacity 0.58s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--activity-item-index, 0) * 70ms);
}

.has-activity-grid-animation .activity-grid__item.is-activity-item-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .has-activity-grid-animation .activity-grid__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.member-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 42px) 24px;
}

.member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px;
  overflow: visible;
  border-radius: var(--radius-lg);
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.member-card:hover,
.member-card:focus-visible {
  transform: translateY(-2px);
}

.member-card__body {
  width: 100%;
  padding: 16px 0 0;
}

.member-card__body h3 {
  margin-bottom: 0;
  font-size: clamp(1.12rem, 2vw, 1.36rem);
}

.person-placeholder {
  position: relative;
  display: grid;
  width: clamp(148px, 16vw, 196px);
  height: clamp(148px, 16vw, 196px);
  margin: 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(238, 238, 233, 0.96), rgba(181, 147, 135, 0.22)),
    var(--color-surface-container);
  box-shadow: 0 18px 32px rgba(117, 88, 77, 0.08);
}

.person-placeholder::before,
.person-placeholder::after {
  display: block;
  background: rgba(117, 88, 77, 0.52);
  content: "";
}

.person-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-placeholder--image::before,
.person-placeholder--image::after {
  display: none;
}

.person-placeholder::before {
  width: 30%;
  height: 30%;
  border-radius: 999px;
  transform: translateY(-22%);
}

.person-placeholder::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 62%;
  height: 34%;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.person-placeholder--soft::before,
.person-placeholder--soft::after {
  background: rgba(var(--color-grass-rgb), 0.42);
}

.person-placeholder--wood::before,
.person-placeholder--wood::after {
  background: rgba(181, 147, 135, 0.72);
}

.has-member-visual-animation .member-card .person-placeholder {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.96);
  transition:
    opacity 0.58s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--member-index, 0) * 90ms);
}

.has-member-visual-animation .member-card.is-member-visual-visible .person-placeholder {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .has-member-visual-animation .member-card .person-placeholder {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.quote {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 3px solid rgba(var(--color-grass-rgb), 0.28);
  font-weight: 700;
}

.cta-band {
  background: var(--color-surface-field);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(117, 88, 77, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.cta-band__inner > div {
  max-width: 760px;
}

.partner-contact-cta {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.contact-complete {
  min-height: clamp(520px, 72vh, 680px);
  padding-top: clamp(72px, 12vw, 120px);
  padding-bottom: clamp(72px, 12vw, 120px);
}

.contact-complete .section__inner {
  display: grid;
  place-items: center;
}

.contact-complete__card {
  width: min(100%, 760px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(117, 88, 77, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.contact-complete__card h1 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.35;
}

.contact-complete__body {
  max-width: 620px;
  margin: 22px auto 0;
  text-align: left;
}

.contact-complete__event-detail {
  max-width: 620px;
  margin: 24px auto 0;
  text-align: left;
}

.contact-complete__actions {
  margin-top: 30px;
}

.section-lead {
  max-width: 720px;
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.button-row--centered {
  justify-content: center;
  margin-top: 32px;
}

.prose__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 24px;
  border: 1px dashed rgba(117, 88, 77, 0.32);
  border-radius: var(--radius-md);
  background: var(--color-surface-field);
  color: var(--color-wood);
  font-weight: 800;
  text-align: center;
}

.image-placeholder small {
  display: block;
  margin-top: 6px;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.schedule-list {
  display: grid;
  gap: 16px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(117, 88, 77, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.schedule-item__date {
  display: grid;
  gap: 4px;
  padding-right: 18px;
  border-right: 1px solid rgba(190, 202, 185, 0.5);
  color: var(--color-wood);
  font-weight: 800;
  text-align: center;
}

.schedule-item__month {
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.schedule-item__day {
  font-size: 2.2rem;
  line-height: 1;
}

.schedule-item__weekday {
  color: var(--color-text-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.schedule-item__body p {
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.schedule-note {
  margin-top: 18px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.schedule-events {
  display: grid;
  gap: 16px;
}

.schedule-events__status {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.schedule-events__status[hidden] {
  display: none;
}

.venue-list.schedule-event-list {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  width: min(100%, calc((var(--max-width) - 24px) / 2));
  margin-inline: auto;
  gap: 24px;
}

.schedule-events__empty {
  grid-column: 1 / -1;
  padding: 20px;
  border: 1px dashed rgba(117, 88, 77, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text-muted);
  font-weight: 700;
  text-align: center;
}

.schedule-event-card__visual {
  width: 100%;
  min-height: 0;
  height: clamp(220px, 26vw, 280px);
  aspect-ratio: auto;
  overflow: hidden;
}

.schedule-event-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-event-card__description {
  margin: 0;
  color: var(--color-text-muted);
  font-size: clamp(0.84rem, 2.6vw, 0.92rem);
  font-weight: 600;
  line-height: 1.65;
}

.schedule-event-card__datetime {
  justify-self: center;
  color: var(--color-text);
  font-family: var(--font-cta);
  font-size: clamp(1.12rem, 2.2vw, 1.42rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: pre-line;
}

.schedule-event-card .venue-card__content {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 16px;
  padding: 16px;
}

.schedule-event-card .venue-card__body {
  gap: 8px;
}

.schedule-event-card .venue-card__meta {
  gap: 6px;
}

.schedule-event-card__details {
  display: grid;
  gap: 2px;
}

.schedule-event-card__address,
.schedule-event-card__note {
  display: block;
}

.venue-list {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.venue-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(117, 88, 77, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.venue-card__visual {
  min-height: clamp(220px, 34vw, 420px);
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(117, 88, 77, 0.12);
  background: var(--color-surface-field);
  box-shadow: inset 0 0 0 1px rgba(190, 202, 185, 0.34);
}

.venue-card__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
}

.venue-card__body {
  display: grid;
  gap: 8px;
}

.venue-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.venue-card .chip {
  min-height: 30px;
  padding: 5px 12px;
  border-color: transparent;
  background: var(--color-grass);
  color: #ffffff;
  font-family: var(--font-cta);
  font-weight: 700;
}

.schedule-event-card .chip {
  min-height: 26px;
  padding: 3px 10px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.schedule-event-card h3 {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.venue-card h3,
.venue-card h4 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.18rem, 3vw, 1.42rem);
  font-weight: 900;
  line-height: 1.35;
}

.venue-card address {
  color: var(--color-text-muted);
  font-size: clamp(0.78rem, 2.6vw, 0.84rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.55;
}

.venue-card__map-button,
.venue-card__join-button {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.venue-card__join-button {
  cursor: pointer;
}

.schedule-event-card .venue-card__join-button {
  justify-self: center;
}

.flow-notes {
  margin-top: 28px;
}

#flow .flow-notes {
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: 560px;
  margin: 30px auto 0;
  padding: 18px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    url("../assets/images/ui/flow-notes-crumpled-paper.png")
    center / 100% 100% no-repeat;
}

#flow .flow-notes > div {
  padding: 18px;
  border-right: 0;
  border-bottom: 0;
}

#flow .flow-notes > div + div {
  padding-top: 18px;
  border-top: 0;
  border-left: 0;
}

#flow .flow-notes > div:last-child {
  border-right: 0;
  border-bottom: 0;
}

#flow .flow-notes h3 {
  margin-bottom: 12px;
  font-size: 0.86rem;
  line-height: 1.45;
}

#flow .flow-notes .check-list {
  gap: 9px;
  font-size: 0.72rem;
  line-height: 1.75;
}

#flow .flow-notes .check-list li {
  padding-left: 20px;
}

#flow .flow-notes .check-list li::before {
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--color-text);
}

@media (min-width: 681px) {
  #flow .flow-notes {
    max-width: 860px;
    padding: 28px 42px 28px 76px;
  }
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 180px));
  align-items: center;
  justify-content: center;
  gap: 32px 44px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 0;
  text-align: center;
}

.partner-logo__image {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  max-height: 104px;
  object-fit: contain;
}

.partner-logo__text {
  color: var(--color-grass);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.partner-logo--empty {
  background: rgba(238, 238, 233, 0.74);
  border: 1px dashed rgba(117, 88, 77, 0.32);
  box-shadow: none;
}

.partner-logo--empty .partner-logo__text {
  color: rgba(117, 88, 77, 0.42);
}

.contact-form {
  display: grid;
  gap: 22px;
  max-width: 720px;
  padding: 28px;
  border: 1px solid rgba(117, 88, 77, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.contact-form[data-state="not-configured"] {
  opacity: 0.96;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.form-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 0.96rem;
}

.form-required,
.form-optional {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.form-required {
  background: rgba(var(--color-grass-rgb), 0.12);
  color: var(--color-grass);
}

.form-optional {
  background: rgba(117, 88, 77, 0.12);
  color: var(--color-wood);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="password"],
.contact-form input[type="date"],
.contact-form input[type="time"],
.contact-form input[type="number"],
.contact-form input[type="file"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(117, 88, 77, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  font: inherit;
  line-height: 1.5;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(221, 237, 73, 0.95);
  outline-offset: 2px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input[type="file"] {
  cursor: pointer;
}

.form-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-fieldset legend {
  padding: 0;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.radio-option,
.event-toggle,
.checkbox-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(117, 88, 77, 0.24);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  cursor: pointer;
}

.radio-option:has(input:checked),
.event-toggle:has(input:checked),
.checkbox-line:has(input:checked) {
  border-color: rgba(var(--color-grass-rgb), 0.6);
  background: rgba(221, 237, 73, 0.28);
  color: var(--color-grass);
}

.radio-option input,
.event-toggle input,
.checkbox-line input {
  margin: 0;
  accent-color: var(--color-grass);
}

.form-events {
  padding: 18px;
  border: 1px solid rgba(117, 88, 77, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
}

.event-toggle-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.contact-event-detail {
  margin-top: 14px;
}

.contact-event-detail[hidden] {
  display: none;
}

.contact-event-detail__card {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(var(--color-grass-rgb), 0.18);
  border-radius: var(--radius-md);
  background: rgba(250, 250, 245, 0.76);
}

.contact-event-detail__visual {
  display: grid;
  min-height: 132px;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 4px);
  background: rgba(190, 202, 185, 0.28);
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.contact-event-detail__visual img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
}

.contact-event-detail__body {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.contact-event-detail__label {
  width: fit-content;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(221, 237, 73, 0.32);
  color: var(--color-grass);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-event-detail__body h3 {
  margin: 0;
  font-size: 1.08rem;
}

.contact-event-detail__list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.contact-event-detail__list div {
  display: grid;
  gap: 3px;
}

.contact-event-detail__list dt {
  color: var(--color-wood);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-event-detail__list dd {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-event-detail__venue-lines {
  display: grid;
  gap: 2px;
}

.contact-event-detail__list a {
  color: var(--color-grass);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-help,
.form-events__loading,
.form-events__empty {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.form-help--small {
  margin-top: 6px;
}

.checkbox-line {
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  font-weight: 600;
}

.checkbox-line a {
  color: var(--color-grass);
  text-decoration: underline;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
}

.form-status[data-level="info"] {
  background: rgba(117, 88, 77, 0.1);
  color: var(--color-wood);
}

.form-status[data-level="loading"] {
  background: rgba(221, 237, 73, 0.32);
  color: var(--color-grass);
}

.form-status[data-level="success"] {
  background: rgba(var(--color-grass-rgb), 0.12);
  color: var(--color-grass);
}

.form-status[data-level="error"] {
  background: rgba(138, 102, 52, 0.16);
  color: var(--color-caution);
}

.form-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.form-actions .button {
  justify-self: center;
}

.policy-meta {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.policy-body {
  display: grid;
  gap: 28px;
  max-width: 860px;
}

.policy-article {
  padding: 24px;
  border: 1px solid rgba(117, 88, 77, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.policy-article h3 {
  margin-bottom: 12px;
  color: var(--color-grass);
  font-size: 1.08rem;
}

.policy-article p {
  color: var(--color-text-muted);
}

.policy-article p + p,
.policy-article p + ul,
.policy-article ul + p {
  margin-top: 12px;
}

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

.admin-page {
  min-height: 100vh;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--space-page);
  border-bottom: 1px solid rgba(190, 202, 185, 0.72);
  background: rgba(250, 250, 245, 0.96);
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 16px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.admin-nav a:hover {
  color: var(--color-grass);
}

.admin-shell {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 48px var(--space-page) 72px;
}

.admin-shell--centered {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.admin-heading {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 28px;
}

.admin-heading h1 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 5vw, 3rem);
}

.admin-heading p {
  color: var(--color-text-muted);
}

.admin-card,
.admin-menu-card {
  padding: 24px;
  border: 1px solid rgba(117, 88, 77, 0.16);
  border-radius: var(--radius-lg);
  background: var(--color-surface-card);
  box-shadow: var(--shadow-soft);
}

.admin-card--narrow {
  width: min(560px, 100%);
}

.admin-card--narrow .brand {
  margin-bottom: 28px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-menu-card {
  display: grid;
  gap: 12px;
  color: inherit;
}

.admin-menu-card h2,
.admin-card h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.admin-menu-card p,
.admin-card p {
  color: var(--color-text-muted);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 24px;
}

.admin-form {
  max-width: none;
}

.admin-checkbox {
  align-self: end;
  min-height: 50px;
}

.admin-rain-field {
  display: grid;
  gap: 12px;
  margin: 0;
}

.admin-rain-field legend {
  padding: 0;
}

.admin-rain-venue-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-rain-venue-toggle {
  min-height: 50px;
}

.admin-rain-venue-toggle span {
  min-width: 0;
}

.admin-rain-venue-list.is-disabled .admin-rain-venue-toggle {
  cursor: not-allowed;
  opacity: 0.48;
}

.admin-rain-venue-list.is-disabled .admin-rain-venue-toggle:has(input:checked) {
  border-color: rgba(117, 88, 77, 0.24);
  background: rgba(255, 255, 255, 0.78);
  color: inherit;
}

.admin-rain-cancel {
  width: fit-content;
  margin-top: 2px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.admin-actions .button[type="submit"] {
  min-width: 168px;
}

.admin-upload-field {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(117, 88, 77, 0.16);
  border-radius: var(--radius-md);
  background: rgba(250, 250, 245, 0.7);
}

.admin-image-preview {
  display: grid;
  grid-template-columns: minmax(96px, 148px) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 2px;
}

.admin-image-preview[hidden] {
  display: none;
}

.admin-image-preview img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(117, 88, 77, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  object-fit: cover;
}

.admin-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(117, 88, 77, 0.14);
  border-radius: var(--radius-md);
  background: rgba(250, 250, 245, 0.72);
}

.admin-list-item h3 {
  margin-bottom: 6px;
}

.admin-item-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-item-actions .button {
  min-width: 104px;
}

.admin-item-meta {
  margin-bottom: 6px;
  color: var(--color-wood);
  font-size: 0.86rem;
  font-weight: 800;
}

.admin-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(221, 237, 73, 0.32);
  color: var(--color-grass);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-empty {
  padding: 18px;
  border: 1px dashed rgba(117, 88, 77, 0.24);
  border-radius: var(--radius-md);
  background: rgba(238, 238, 233, 0.48);
  color: var(--color-text-muted);
}

.admin-layout--contact {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.admin-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-contact-item {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(117, 88, 77, 0.16);
  border-radius: var(--radius-md);
  background: rgba(250, 250, 245, 0.72);
}

.admin-contact-button {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.admin-contact-button:hover,
.admin-contact-button:focus-visible {
  background: rgba(221, 237, 73, 0.16);
  outline: none;
}

.admin-contact-item.is-active {
  border-color: rgba(var(--color-grass-rgb), 0.48);
  background: rgba(221, 237, 73, 0.22);
}

.admin-contact-preview {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.admin-contact-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 14px 14px;
}

.admin-contact-actions .button {
  min-width: 118px;
  text-decoration: none;
}

.admin-contact-actions .button:first-child {
  justify-self: flex-start;
}

.admin-contact-actions .button:last-child {
  justify-self: flex-end;
}

.admin-detail-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-detail-heading h2 {
  margin-bottom: 0;
}

.admin-contact-management {
  max-width: none;
  margin-bottom: 22px;
  padding: 18px;
  border-color: rgba(var(--color-grass-rgb), 0.16);
  background: rgba(250, 250, 245, 0.82);
  box-shadow: none;
}

.admin-contact-management .form-row {
  grid-template-columns: minmax(0, 1fr);
}

.admin-detail-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.admin-detail-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(190, 202, 185, 0.58);
}

.admin-detail-list dt {
  color: var(--color-wood);
  font-weight: 800;
}

.admin-detail-list dd {
  margin: 0;
  color: var(--color-text-muted);
}

.admin-layout--participants {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.admin-participant-event-list {
  gap: 16px;
  margin-top: 18px;
}

.admin-participant-event-card {
  display: grid;
  width: 100%;
  padding: 0;
  border-radius: var(--radius-md);
  appearance: none;
  color: var(--color-text);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.admin-participant-event-card:hover,
.admin-participant-event-card:focus-visible {
  border-color: rgba(var(--color-grass-rgb), 0.38);
  outline: none;
  box-shadow: 0 14px 36px rgba(47, 92, 64, 0.14);
}

.admin-participant-event-card.is-active {
  border-color: rgba(var(--color-grass-rgb), 0.58);
  box-shadow: 0 0 0 3px rgba(221, 237, 73, 0.34), var(--shadow-card);
}

.admin-participant-event-card__visual {
  display: block;
  height: clamp(140px, 18vw, 220px);
}

.admin-participant-event-card__title {
  display: block;
  font-size: 1.15rem;
  line-height: 1.45;
}

.admin-participant-event-card__action {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: var(--color-grass);
  font-size: 0.88rem;
  font-weight: 900;
}

.admin-participant-detail {
  position: sticky;
  top: 24px;
}

.admin-participant-detail-page {
  display: grid;
  gap: 22px;
}

.admin-participant-detail-summary .admin-detail-heading {
  margin-bottom: 0;
}

.admin-participant-list {
  display: grid;
  gap: 16px;
}

.admin-participant-list--accordion {
  gap: 12px;
}

.admin-participant-item {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(117, 88, 77, 0.14);
  border-radius: var(--radius-md);
  background: rgba(250, 250, 245, 0.72);
}

.admin-participant-item__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.admin-participant-item__heading h3 {
  margin-bottom: 0;
}

.admin-detail-list--compact div {
  grid-template-columns: 120px minmax(0, 1fr);
  padding: 10px 0;
}

.admin-participant-accordion {
  overflow: hidden;
  border: 1px solid rgba(117, 88, 77, 0.14);
  border-radius: var(--radius-md);
  background: rgba(250, 250, 245, 0.78);
}

.admin-participant-accordion summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--color-text);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.admin-participant-accordion summary::-webkit-details-marker {
  display: none;
}

.admin-participant-accordion summary:hover,
.admin-participant-accordion summary:focus-visible {
  background: rgba(221, 237, 73, 0.14);
  outline: none;
}

.admin-participant-accordion__name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-participant-accordion__chevron {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(var(--color-grass-rgb), 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.admin-participant-accordion__chevron::before {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-grass);
  border-bottom: 2px solid var(--color-grass);
  content: "";
  transform: rotate(-45deg);
  transition: transform 0.18s ease;
}

.admin-participant-accordion[open] .admin-participant-accordion__chevron::before {
  transform: rotate(45deg);
}

.admin-participant-accordion__details {
  padding: 0 16px 14px;
}

.admin-message {
  white-space: pre-wrap;
  margin: 0;
  color: var(--color-text);
  font: inherit;
}

.site-footer {
  padding: 42px var(--space-page);
  border-top: 1px solid rgba(190, 202, 185, 0.46);
  background: var(--color-surface-field);
}

.site-footer__inner {
  display: grid;
  gap: 18px;
  color: var(--color-text-muted);
}

.footer-brand {
  color: var(--color-text);
}

.footer-nav {
  justify-content: flex-start;
}

.footer-reserve {
  --footer-reserve-wave-height: clamp(56px, 12vw, 132px);
  position: relative;
  padding: clamp(32px, 5vw, 56px) var(--space-page) clamp(56px, 8vw, 92px);
  border-top: 0;
  background: var(--color-grass);
  color: #ffffff;
}

.footer-reserve--site-end {
  padding-bottom: calc(clamp(140px, 22vw, 220px) + env(safe-area-inset-bottom));
}

.footer-reserve::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: var(--footer-reserve-wave-height);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='%233f9d52' d='M0 84C240 18 480 18 720 84C960 150 1200 150 1440 84V160H0Z'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

.footer-reserve__inner {
  display: grid;
  justify-items: center;
  gap: 26px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-reserve__content {
  max-width: 760px;
}

.footer-reserve__label {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 5vw, 2.85rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.footer-reserve h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.25;
}

.footer-reserve p {
  color: rgba(255, 255, 255, 0.86);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-link {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-grass);
  box-shadow: 0 8px 18px rgba(0, 41, 10, 0.12);
}

.social-link__icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(23%) sepia(96%) saturate(1655%) hue-rotate(126deg) brightness(88%) contrast(105%);
}

@supports selector(:has(*)) {
  .social-link::before {
    display: block;
    width: 22px;
    height: 22px;
    background: var(--color-grass);
    content: "";
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .social-link:has(.social-link__icon[src$="x.svg"])::before {
    -webkit-mask-image: url("../assets/images/social/x.svg");
    mask-image: url("../assets/images/social/x.svg");
  }

  .social-link:has(.social-link__icon[src$="instagram.svg"])::before {
    -webkit-mask-image: url("../assets/images/social/instagram.svg");
    mask-image: url("../assets/images/social/instagram.svg");
  }

  .social-link:has(.social-link__icon[src$="line.svg"])::before {
    -webkit-mask-image: url("../assets/images/social/line.svg");
    mask-image: url("../assets/images/social/line.svg");
  }

  .social-link__icon {
    position: absolute;
    opacity: 0;
  }
}

.social-link:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--color-grass);
  box-shadow: 0 10px 22px rgba(0, 41, 10, 0.18);
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header,
  .home-page .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header__inner,
  .hero__inner,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .nav-toggle {
    position: fixed;
    top: env(safe-area-inset-top);
    right: 0;
    z-index: 40;
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 0 0 0 18px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-grass);
    box-shadow: 0 10px 24px rgba(0, 41, 10, 0.14);
  }

  .home-page .nav-toggle {
    color: var(--color-grass);
  }

  .nav-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-grass);
    box-shadow: 0 10px 24px rgba(0, 41, 10, 0.14);
  }

  .site-nav {
    --mobile-menu-width: min(74vw, 360px);
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 30;
    justify-content: flex-end;
    min-height: 100dvh;
    overflow: hidden;
    padding: 0;
    background: rgba(26, 28, 25, 0.56);
    color: var(--color-surface-card);
    font-family: var(--font-cta);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.26s ease, visibility 0s linear 0.26s;
    visibility: hidden;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
    visibility: visible;
  }

  .site-nav.is-closing {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0s;
    visibility: visible;
  }

  .site-nav__panel {
    position: relative;
    display: flex;
    width: var(--mobile-menu-width);
    min-width: 270px;
    min-height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: calc(88px + env(safe-area-inset-top)) 22px calc(28px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--color-menu-grass);
    box-shadow: -20px 0 36px rgba(26, 28, 25, 0.22);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open .site-nav__panel {
    transform: translateX(0);
  }

  .site-nav__links {
    display: grid;
    width: 100%;
    gap: 22px;
    justify-content: center;
    justify-items: center;
  }

  .site-nav__links > a {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 0;
    border: 0;
    color: inherit;
    font-size: clamp(1.2rem, 5.4vw, 1.55rem);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .site-nav__actions {
    display: grid;
    width: 100%;
    justify-content: center;
    justify-items: center;
    gap: 18px;
    margin-top: auto;
    padding-top: 34px;
  }

  .site-nav .button.button--pill-large.site-nav__cta {
    width: min(100%, 288px);
    min-height: 56px;
    padding: 13px 22px;
    border-color: #ffffff;
    border-radius: var(--radius-pill);
    background: #ffffff;
    color: var(--color-grass);
    font-size: clamp(1rem, 4.4vw, 1.12rem);
    box-shadow: 0 14px 30px rgba(0, 41, 10, 0.2);
    white-space: nowrap;
  }

  .site-nav__social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .site-nav .social-link {
    display: inline-grid;
    width: 44px;
    height: 44px;
    min-height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid #ffffff;
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-grass);
    box-shadow: 0 8px 18px rgba(0, 41, 10, 0.12);
  }

  @media (prefers-reduced-motion: reduce) {
    .site-nav,
    .site-nav__panel {
      transition: none;
    }
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    color: var(--color-lime);
  }

  .hero__inner {
    min-height: auto;
  }

  .hero__panel {
    min-height: clamp(560px, 78svh, 760px);
  }

  .hero__intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-photo-collage,
  .about-photo-collage--reverse {
    grid-template-columns: minmax(0, 1.65fr) minmax(132px, 0.95fr);
    min-height: clamp(240px, 50vw, 440px);
  }

  .card-grid--three,
  .step-grid,
  .member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #flow .step-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #flow .flow-step-arrow {
    width: 100%;
    min-height: 58px;
    margin: 18px 0 22px;
    justify-items: center;
    padding-left: 0;
  }

  #flow .flow-step-arrow::before {
    font-size: 2.15rem;
    content: "↓";
  }

  .report-carousel__slide {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .activity-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(92px, 17vw, 140px);
  }

  .activity-grid__item--large,
  .activity-grid__item--wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .activity-grid__item--tall,
  .activity-grid__item--medium,
  .activity-grid__item--small {
    grid-column: span 2;
    grid-row: span 2;
  }

  .partner-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .schedule-item {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 20px;
  }

  .venue-card {
    grid-template-columns: 1fr;
  }

  .venue-card__map-button {
    justify-self: flex-start;
  }

  .contact-form .form-row,
  .radio-group {
    grid-template-columns: 1fr;
  }

  .contact-event-detail__card {
    grid-template-columns: 1fr;
  }

  .contact-event-detail__visual,
  .contact-event-detail__visual img {
    min-height: 180px;
  }

  .section-heading--with-link,
  .admin-header,
  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-layout,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-rain-venue-list {
    grid-template-columns: 1fr;
  }

  .admin-participant-detail {
    position: static;
  }

  .admin-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(1.9rem, 10vw, 2.65rem);
  }

  .site-header__inner,
  .hero,
  .section,
  .page-hero,
  .cta-band,
  .footer-reserve,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-nav {
    gap: 24px;
    font-size: 0.84rem;
  }

  .hero {
    padding: 0;
  }

  .hero__panel {
    min-height: clamp(560px, 76svh, 720px);
    border-radius: 0;
  }

  .hero__media img {
    object-position: 56% center;
  }

  .hero__tagline {
    top: calc(68px + env(safe-area-inset-top));
    max-width: calc(100vw - 72px);
    padding: 10px 18px 11px 24px;
    border-radius: 0 14px 14px 0;
    font-size: clamp(0.96rem, 4.1vw, 1.18rem);
  }

  .hero__content {
    justify-content: flex-end;
    padding: calc(92px + env(safe-area-inset-top)) 22px clamp(68px, 15vw, 104px);
  }

  .hero__kicker {
    font-size: 0.95rem;
  }

  .hero__wordmark {
    max-width: 340px;
  }

  .hero__title-image {
    width: min(82vw, 380px);
  }

  .hero__lead {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero__intro {
    width: 100%;
    margin-top: -12px;
    padding: 48px 16px 64px;
    border-radius: 28px 28px 0 0;
  }

  .hero__intro-heading h3 {
    font-size: clamp(1.15rem, 5.1vw, 1.45rem);
  }

  .hero__intro-text {
    font-size: 0.78rem;
    line-height: 1.85;
  }

  .hero__actions {
    margin-top: auto;
    padding-top: 32px;
  }

  .about-prose {
    gap: 44px;
  }

  .about-story {
    gap: 20px;
  }

  .about-photo-collage,
  .about-photo-collage--reverse {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-height: clamp(188px, 58vw, 252px);
  }

  .about-photo-collage {
    grid-template-columns: minmax(0, 1.85fr) minmax(78px, 1fr);
  }

  .about-photo-collage--reverse {
    grid-template-columns: minmax(78px, 1fr) minmax(0, 1.85fr);
  }

  .about-photo-collage__item {
    border-radius: 14px;
  }

  .about-photo-collage__item--large {
    grid-row: 1 / span 2;
  }

  .about-photo-collage--reverse .about-photo-collage__item--large {
    grid-column: 2;
  }

  .about-photo-collage:not(.about-photo-collage--reverse) .about-photo-collage__item:not(.about-photo-collage__item--large) {
    grid-column: 2;
  }

  .about-photo-collage--reverse .about-photo-collage__item:not(.about-photo-collage__item--large) {
    grid-column: 1;
  }

  .hero__button {
    width: 100%;
  }

  .hero-card,
  .cta-band__inner {
    padding: 20px;
  }

  .guide-cta {
    margin-top: 56px;
    padding: 0 42px;
  }

  .guide-cta__board {
    min-height: 96px;
    padding: 18px 48px;
  }

  .guide-cta__mascot {
    width: 96px;
  }

  .guide-cta__mascot--left {
    left: -2px;
  }

  .guide-cta__mascot--right {
    right: -2px;
  }

  .card-grid--three,
  .card-grid--two,
  .schedule-event-list,
  .step-grid,
  .list-panel--two {
    grid-template-columns: 1fr;
  }

  #flow .step-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }

  #flow .step-card__icon {
    width: 72px;
  }

  #flow .flow-step-arrow {
    min-height: 56px;
    margin: 18px 0 22px;
    padding-left: 0;
  }

  #flow .flow-notes {
    gap: 0;
    margin-top: 28px;
  }

  #flow .flow-notes > div {
    padding: 18px;
    border-right: 0;
    border-bottom: 0;
  }

  #flow .flow-notes > div + div {
    padding-top: 18px;
    border-top: 0;
    border-left: 0;
  }

  #flow .flow-notes > div:last-child {
    border-bottom: 0;
  }

  #flow .flow-notes h3 {
    font-size: 0.86rem;
  }

  #flow .flow-notes .check-list {
    font-size: 0.72rem;
  }

  .report-carousel__slide {
    flex: 0 0 62%;
  }

  .report-carousel__track {
    gap: 12px;
  }

  .report-news-card__body {
    padding: 12px 14px 16px;
  }

  .report-news-card__date {
    font-size: 0.74rem;
  }

  .report-news-card__title {
    font-size: 0.9rem;
  }

  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(136px, 42vw, 210px);
    gap: 10px;
  }

  .activity-grid__item--large,
  .activity-grid__item--wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .activity-grid__item--tall,
  .activity-grid__item--medium,
  .activity-grid__item--small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .member-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .person-placeholder {
    width: clamp(188px, 62vw, 248px);
    height: clamp(188px, 62vw, 248px);
  }

  .member-card__body {
    padding-top: 16px;
  }

  .member-card__body h3 {
    font-size: clamp(1.32rem, 6vw, 1.72rem);
  }

  .partner-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .partner-logo {
    min-height: 72px;
  }

  .partner-logo__image {
    max-height: 78px;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .schedule-item__date {
    grid-template-columns: repeat(3, auto);
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(190, 202, 185, 0.5);
    text-align: left;
  }

  .schedule-item__day {
    font-size: 1.6rem;
  }

  .venue-card {
    border-radius: 22px;
  }

  .venue-card__visual {
    min-height: 210px;
    aspect-ratio: 4 / 3;
  }

  .schedule-event-card__visual {
    min-height: 0;
    height: 260px;
    aspect-ratio: auto;
  }

  .venue-card__content {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .venue-card__map-button,
  .venue-card__join-button {
    width: 100%;
    white-space: normal;
  }

  .list-panel--two > div {
    border-right: 0;
    border-bottom: 1px solid rgba(190, 202, 185, 0.5);
  }

  .list-panel--two > div:last-child {
    border-bottom: 0;
  }

  .detail-list div,
  .mini-list div,
  .admin-detail-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .button {
    width: 100%;
  }

  .button.button--pill-large {
    width: min(74vw, 288px);
    padding-right: 24px;
    padding-left: 24px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row--centered {
    align-items: center;
  }

  .contact-form {
    padding: 22px;
  }

  .admin-shell {
    padding: 36px 16px 56px;
  }

  .admin-card,
  .admin-menu-card {
    padding: 20px;
  }

  .admin-list-item {
    grid-template-columns: 1fr;
  }

  .admin-item-actions {
    justify-content: stretch;
  }

  .admin-item-actions .button {
    flex: 1 1 130px;
  }

  .admin-contact-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .admin-contact-actions .button {
    width: 100%;
    min-width: 0;
  }
}

.news-detail__date {
  display: block;
  margin-top: 0;
  color: var(--color-wood);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-detail {
  background: var(--color-surface-warm);
}

.news-detail .page-hero {
  padding-bottom: 16px;
  background: transparent;
}

.news-detail .page-hero__inner {
  text-align: left;
}

.news-detail .page-hero h1 {
  display: block;
  margin-bottom: 8px;
}

.news-detail .page-hero h1::after {
  display: none;
  content: none;
}

.news-detail .page-hero + .section {
  padding-top: 18px;
}

.news-detail__visual {
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 32px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(117, 88, 77, 0.12);
  border-radius: var(--radius-lg);
  background: var(--color-surface-field);
  box-shadow: var(--shadow-card);
}

.news-detail__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-detail__visual--soft {
  background: rgba(75, 174, 79, 0.12);
}

.news-detail__visual--wood {
  background: rgba(181, 147, 135, 0.16);
}

.news-detail__visual--lime {
  background: rgba(221, 237, 73, 0.24);
}

.news-detail__actions {
  margin-top: 48px;
}

.member-detail .page-hero {
  padding-top: 48px;
  padding-bottom: 12px;
  border-bottom: 0;
}

.member-detail .page-hero + .section {
  padding-top: 24px;
}

.member-detail__heading {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.member-detail__heading h1 {
  margin-top: 4px;
  margin-bottom: 0;
}

.member-detail__role {
  display: block;
  margin-bottom: 4px;
  color: var(--color-wood);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.member-detail__visual {
  position: relative;
  display: grid;
  width: 200px;
  height: 200px;
  margin: 0 auto 32px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(135deg, rgba(238, 238, 233, 0.96), rgba(181, 147, 135, 0.22)),
    var(--color-surface-container);
}

.member-detail__visual::before,
.member-detail__visual::after {
  display: block;
  background: rgba(117, 88, 77, 0.52);
  content: "";
}

.member-detail__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-detail__visual--image::before,
.member-detail__visual--image::after {
  display: none;
}

.member-detail__visual::before {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  transform: translateY(-20px);
}

.member-detail__visual::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 124px;
  height: 58px;
  border-radius: 62px 62px 0 0;
  transform: translateX(-50%);
}

.member-detail__visual--soft::before,
.member-detail__visual--soft::after {
  background: rgba(var(--color-grass-rgb), 0.42);
}

.member-detail__visual--wood::before,
.member-detail__visual--wood::after {
  background: rgba(181, 147, 135, 0.72);
}

.member-detail__profile {
  display: grid;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  gap: clamp(26px, 4vw, 36px);
}

.member-detail__profile-item {
  display: grid;
  gap: 6px;
}

.member-detail__profile dt {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.member-detail__profile dd {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.member-detail__profile-item--comment {
  padding-left: 14px;
  border-left: 3px solid rgba(var(--color-grass-rgb), 0.28);
}

.member-related {
  padding-top: clamp(28px, 6vw, 72px);
}

.member-related__viewport {
  --member-related-gap: clamp(18px, 4vw, 36px);
  width: 100vw;
  max-width: 100vw;
  margin: clamp(26px, 5vw, 44px) calc(50% - 50vw) 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.member-related__viewport.is-dragging {
  cursor: grabbing;
}

.member-related__track {
  display: flex;
  gap: var(--member-related-gap);
  width: max-content;
  animation: member-related-slide var(--member-related-duration, 10s) linear infinite;
  will-change: transform;
}

.member-related__track.is-js-controlled {
  animation: none;
  transform: translate3d(var(--member-related-offset, 0px), 0, 0);
}

.member-related__viewport:hover .member-related__track,
.member-related__viewport:focus-within .member-related__track {
  animation-play-state: paused;
}

.member-related__group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--member-related-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-related__item {
  flex: 0 0 auto;
}

.member-related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(124px, 15vw, 168px);
  padding: 2px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.member-related-card:hover,
.member-related-card:focus-visible {
  transform: translateY(-2px);
}

.member-related-card__visual {
  width: clamp(104px, 12vw, 136px);
  height: clamp(104px, 12vw, 136px);
}

.member-related-card__body {
  width: 100%;
  padding-top: 10px;
}

.member-related-card__body .card-kicker {
  margin-bottom: 7px;
  font-size: 0.66rem;
}

.member-related-card__body h3 {
  margin-bottom: 0;
  font-size: clamp(0.92rem, 1.35vw, 1.08rem);
}

@keyframes member-related-slide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--member-related-slide-distance, -50%), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .member-related__track {
    animation: none;
  }
}

/* ヒーロー写真を固定し、紹介エリアとモルック説明を重ねてつなぐ。 */
.hero {
  overflow: visible;
}

.hero__panel {
  position: sticky;
  top: 0;
  z-index: 0;
}

#about {
  overflow: visible;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

#about::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  z-index: 0;
  display: block;
  height: var(--section-wave-height);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='%23e5f4ed' d='M0 84C240 18 480 18 720 84C960 150 1200 150 1440 84V160H0Z'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

#about .section__inner {
  position: relative;
  z-index: 1;
}
