@charset "UTF-8";
/* =========================================================
   Tokens
   ========================================================= */
:root {
  --paper: #f1ecdc;
  --paper-raise: #f8f4e8;
  --ink: #232c1d;
  --ink-soft: #5b6152;
  --green: #0f7d5f;
  --green-deep: #0b5f48;
  --pink: #df4a72;
  --pink-deep: #b6335a;
  --blue: #4a9aa4;
  --blue-deep: #347880;
  --line: rgba(35, 44, 29, .14);
  --radius: 18px;
  --pending: #8a6a2f;
  --pending-soft: color-mix(in srgb, #8a6a2f 12%, #f1ecdc);
  --font-display: "Hiragino Maru Gothic ProN", "BIZ UDPGothic", "Yu Gothic", system-ui, sans-serif;
  --font-body: "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #e9e2c9;
    --paper-raise: #f1ebd6;
    --ink: #20281a;
    --line: rgba(35, 44, 29, .18);
  }
}
:root[data-theme=dark] {
  --paper: #e9e2c9;
  --paper-raise: #f1ebd6;
  --ink: #20281a;
  --line: rgba(35, 44, 29, .18);
}

:root[data-theme=light] {
  --paper: #f1ecdc;
  --paper-raise: #f8f4e8;
  --ink: #232c1d;
  --line: rgba(35, 44, 29, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
  margin: 0;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
}

.narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

/* =========================================================
   Runner figures
   ========================================================= */
.figure {
  position: absolute;
  width: 52px;
  height: 74px;
  --c: var(--green);
}

.figure .head {
  position: absolute;
  top: 0;
  left: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c);
}

.figure .torso {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 13px;
  height: 30px;
  border-radius: 7px;
  background: var(--c);
  transform: rotate(6deg);
}

.figure .arm {
  position: absolute;
  top: 19px;
  width: 8px;
  height: 24px;
  border-radius: 5px;
  background: var(--c);
}

.figure .arm.l {
  left: 0;
  transform: rotate(-48deg);
}

.figure .arm.r {
  right: 0;
  transform: rotate(58deg);
}

.figure .leg {
  position: absolute;
  top: 40px;
  width: 9px;
  height: 30px;
  border-radius: 5px;
  background: var(--c);
}

.figure .leg.l {
  left: 9px;
  transform: rotate(24deg);
}

.figure .leg.r {
  left: 25px;
  transform: rotate(-40deg);
}

.figure.pink {
  --c: var(--pink);
}

.figure.blue {
  --c: var(--blue);
}

.figure.green {
  --c: var(--green);
}

@media (prefers-reduced-motion: no-preference) {
  .figure {
    -webkit-animation: bob 3.6s ease-in-out infinite;
            animation: bob 3.6s ease-in-out infinite;
  }
}
@-webkit-keyframes bob {
  0%, 100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
  50% {
    transform: translateY(-8px) rotate(var(--rot, 0deg));
  }
}
@keyframes bob {
  0%, 100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }
  50% {
    transform: translateY(-8px) rotate(var(--rot, 0deg));
  }
}
/* =========================================================
   Header / nav / buttons
   ========================================================= */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(241, 236, 220, 0.86);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: 0 6px 18px -12px rgba(35, 44, 29, 0.35);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  flex: none;
  text-decoration: none;
}

.brand .ring {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid var(--green);
  flex: none;
}

.main-nav {
  display: flex;
  gap: 1.35rem;
  flex: 1;
  font-size: 0.86rem;
  font-weight: 600;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  display: flex;
  flex-shrink: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--pink);
}

.main-nav .current-menu-item > a,
.main-nav a[aria-current=page] {
  color: var(--ink);
  border-color: var(--pink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--pink);
  color: #fff8f2;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--pink-deep);
}

.btn-primary.sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.78rem;
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.btn:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

@media (max-width: 820px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    display: block;
    flex: 1;
    padding: 0.8rem clamp(1.2rem, 4vw, 3rem);
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}
/* =========================================================
   Section shell / reveal
   ========================================================= */
section {
  padding: clamp(2.4rem, 6vw, 4rem) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--pink-deep);
  margin-bottom: 0.8rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-head .see-all {
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 2px solid var(--pink);
  white-space: nowrap;
}

h2.section-title {
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.stack-gap {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.2rem);
  margin-bottom: 1rem;
}

.page-hero .lede {
  max-width: 56ch;
  color: var(--ink-soft);
}

.page-hero .lede.lede-full {
  max-width: 100%;
}

.page-hero .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 1.1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   Hero (front page)
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ring-big {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  opacity: 0.5;
}

.ring-big.r1 {
  width: 420px;
  height: 420px;
  border-width: 46px;
  border-color: var(--green);
  top: -180px;
  right: -140px;
}

.ring-big.r2 {
  width: 260px;
  height: 260px;
  border-width: 30px;
  border-color: var(--pink);
  bottom: -120px;
  left: -100px;
  opacity: 0.4;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.eyebrow .yr {
  color: var(--pink);
}

.wordmark {
  font-size: clamp(2.6rem, 8.6vw, 5.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
}

.wm-char {
  position: relative;
  display: inline-block;
}

.wm-char::after {
  content: attr(data-ch);
  position: absolute;
  inset: 0;
  color: color-mix(in srgb, currentColor 55%, #1a1f14 45%);
  transform: translate(3px, 4px);
  z-index: -1;
  opacity: 0.55;
}

.c-green {
  color: var(--green);
}

.c-pink {
  color: var(--pink);
}

.c-blue {
  color: var(--blue);
}

.headline {
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  font-weight: 800;
  max-width: 16ch;
  margin-bottom: 1.1rem;
}

.lede {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 1.7rem;
}

.lede.lede-group {
  max-width: 100%;
}

.lede.lede-group p {
  margin: 0 0 0.8rem;
}

.lede.lede-group p:last-child {
  margin-bottom: 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  align-items: baseline;
  margin-bottom: 1.9rem;
  font-size: 0.95rem;
}

.hero-meta b {
  font-variant-numeric: tabular-nums;
  font-size: 1.15rem;
}

.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-illustrations {
  position: relative;
  height: 120px;
  margin-top: 2.6rem;
}

.hero-illustrations .figure:nth-child(1) {
  left: 2%;
  bottom: 0;
  --rot: -6deg;
}

.hero-illustrations .figure:nth-child(2) {
  left: 20%;
  bottom: 10px;
  --rot: 4deg;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.hero-illustrations .figure:nth-child(3) {
  left: 40%;
  bottom: -4px;
  --rot: -3deg;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.hero-illustrations .figure:nth-child(4) {
  left: 60%;
  bottom: 6px;
  --rot: 8deg;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.hero-illustrations .figure:nth-child(5) {
  left: 82%;
  bottom: 0;
  --rot: -8deg;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@media (max-width: 700px) {
  .hero-illustrations {
    display: none;
  }
}
/* beliefs */
.beliefs {
  padding: 1.6rem 0 3.2rem;
}

.beliefs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.beliefs li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.02rem;
}

.beliefs .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 4px solid var(--c);
  flex: none;
}

.beliefs li:nth-child(1) .dot {
  --c: var(--green);
}

.beliefs li:nth-child(1) {
  color: var(--green-deep);
}

.beliefs li:nth-child(2) .dot {
  --c: var(--pink);
}

.beliefs li:nth-child(2) {
  color: var(--pink-deep);
}

.beliefs li:nth-child(3) .dot {
  --c: var(--blue);
}

.beliefs li:nth-child(3) {
  color: var(--blue-deep);
}

/* events grid (front page teaser + events page) */
.events {
  background: var(--paper-raise);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

@media (max-width: 900px) {
  .event-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}
.event-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.event-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tint);
}

.event-icon .mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c);
}

.event-card:nth-child(1) {
  --c: var(--green);
  --tint: color-mix(in srgb, var(--green) 16%, transparent);
}

.event-card:nth-child(2) {
  --c: var(--pink);
  --tint: color-mix(in srgb, var(--pink) 16%, transparent);
}

.event-card:nth-child(3) {
  --c: var(--blue);
  --tint: color-mix(in srgb, var(--blue) 16%, transparent);
}

.event-card:nth-child(4) {
  --c: var(--green-deep);
  --tint: color-mix(in srgb, var(--green-deep) 16%, transparent);
}

.event-card h3 {
  font-size: 1.08rem;
}

.event-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.event-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 700;
  border-top: 1px dashed var(--line);
  padding-top: 0.7rem;
}

/* events detail page */
.event-detail {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.4rem;
  align-items: center;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
}

.event-detail:first-of-type {
  border-top: none;
}

.event-detail.reverse .event-visual {
  order: 2;
}

@media (max-width: 760px) {
  .event-detail {
    grid-template-columns: 1fr;
  }

  .event-detail.reverse .event-visual {
    order: 0;
  }
}
.event-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: var(--paper-raise);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.event-visual .ring-big {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  opacity: 0.45;
  width: 190px;
  height: 190px;
  border-width: 22px;
}

.event-num {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--c);
  margin-bottom: 0.4rem;
}

.event-copy h2 {
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}

.event-copy .desc {
  color: var(--ink-soft);
  margin: 0.9rem 0 1.2rem;
  max-width: 48ch;
}

.chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--tint);
  color: var(--c);
}

/* entry banner */
.entry-banner {
  background: var(--pink);
  color: #fff6ef;
}

.entry-banner .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.entry-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.entry-banner p {
  margin: 0.5rem 0 0;
  opacity: 0.92;
}

.entry-banner .details {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.entry-banner .details b {
  font-variant-numeric: tabular-nums;
  display: block;
  font-size: 1.1rem;
}

.entry-banner .btn-primary {
  background: #fff6ef;
  color: var(--pink-deep);
}

.entry-banner .btn-primary:hover {
  background: #fff;
}

/* access */
.access-grid,
.overview-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

@media (max-width: 760px) {
  .access-grid,
.overview-grid {
    grid-template-columns: 1fr;
  }
}
.map-card {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.access-facts dl,
dl.facts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 1.1rem;
  font-size: 0.95rem;
  margin: 0 0 1.3rem;
}

.access-facts dt,
dl.facts dt {
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
}

.access-facts dd,
dl.facts dd {
  margin: 0;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

@media (max-width: 700px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}
.method-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  background: var(--paper-raise);
}

.method-card .m-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--blue);
  margin-bottom: 0.8rem;
}

.method-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.method-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--line);
  margin-left: 0.5rem;
}

.t-item {
  position: relative;
  padding: 0.9rem 0 0.9rem 1.4rem;
}

.t-item::before {
  content: "";
  position: absolute;
  left: -6.5px;
  top: 1.15rem;
  width: 11px;
  height: 11px;
  border: 2px solid var(--pink);
  background: var(--paper);
  border-radius: 50%;
}

.t-time {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--pink-deep);
  margin-right: 0.8rem;
}

/* event intro (front page) */
.event-intro .tagline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--green-deep);
  max-width: 100%;
  margin: 0.8rem 0 1.4rem;
}

.event-intro p {
  color: var(--ink-soft);
  max-width: 100%;
  margin: 0 0 1rem;
}

.event-intro p:last-child {
  margin-bottom: 0;
}

/* organizer message (front page) */
.message {
  background: var(--paper-raise);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.message .tagline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--pink-deep);
  max-width: 22ch;
  margin: 0.8rem 0 1.6rem;
}

.message-body {
  max-width: 100%;
}

.message-body p {
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 0 0 1.3rem;
}

.message-body p:last-child {
  margin-bottom: 0;
}

.message-callout {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--ink);
  max-width: 30ch;
  margin: 1.8rem 0;
}

.message-signature {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.avatar-sm {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--pink-deep);
  flex: none;
}

.message-signature .name {
  font-weight: 700;
}

.message-signature .role {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.message-signature a {
  margin-left: auto;
}

@media (max-width: 600px) {
  .message-signature {
    flex-wrap: wrap;
  }

  .message-signature a {
    margin-left: 0;
    width: 100%;
  }
}
/* about page intro */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.4rem;
  align-items: center;
}

@media (max-width: 760px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}
.intro-figure {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: var(--paper-raise);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-figure .ring-big {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: var(--green);
  opacity: 0.45;
  width: 200px;
  height: 200px;
  border-width: 24px;
  top: -50px;
  left: -50px;
}

.intro-copy p {
  color: var(--ink-soft);
  max-width: 48ch;
}

/* vision cards */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

@media (max-width: 820px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
}
.vision-card {
  background: var(--paper-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vision-num {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--c);
}

.vision-card:nth-child(1) {
  --c: var(--green);
}

.vision-card:nth-child(2) {
  --c: var(--pink);
}

.vision-card:nth-child(3) {
  --c: var(--blue);
}

.vision-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* notice box (pending items) */
.notice-box {
  border: 1.5px dashed var(--pending);
  background: var(--pending-soft);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
}

.notice-box h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
  color: var(--pending);
}

.notice-box ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.95;
}

.notice-box .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pending);
  border: 1px solid var(--pending);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  margin-bottom: 0.7rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 600px) {
  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.logo-slot {
  aspect-ratio: 2/1;
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--ink-soft);
  background: var(--paper);
}

ul.policy {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 2;
}

/* tables (pricing / results) */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table.pricing,
table.results {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

table.pricing th,
table.pricing td,
table.results th,
table.results td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

table.pricing th,
table.results th {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper-raise);
}

table.pricing tr:last-child td,
table.results tr:last-child td {
  border-bottom: none;
}

table.pricing td.num,
table.results td.year {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
}

/* faq accordion */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--pink);
  flex: none;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
}

/* blog filters / grid / pagination */
.filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.filter-btn {
  border: 1.5px solid var(--line);
  background: var(--paper-raise);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-flex;
}

.filter-btn:hover {
  border-color: var(--pink);
}

.filter-btn.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.filter-btn:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 2px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 820px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-card[hidden] {
  display: none;
}

.blog-thumb {
  aspect-ratio: 16/10;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--a, var(--paper-raise)), var(--b, var(--paper)));
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pink-deep);
}

.blog-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.pagination,
.wp-pagenavi,
.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  flex-wrap: wrap;
}

.pagination button,
.pagination a,
.nav-links a,
.nav-links span {
  min-width: 34px;
  height: 34px;
  padding: 0 0.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper-raise);
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.pagination button.active,
.nav-links span.current {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff8f2;
}

.pagination button:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 2px;
}

/* single post */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.breadcrumb a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.post-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pink-deep);
}

.post-date {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  margin-left: 0.8rem;
}

.post-title {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin: 0.7rem 0 1.6rem;
}

.post-hero {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, color-mix(in srgb, var(--green) 28%, var(--paper-raise)), var(--paper-raise));
  margin-bottom: 1.8rem;
  overflow: hidden;
}

.post-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-body p {
  margin: 0 0 1.3rem;
}

.post-body p:last-child {
  margin-bottom: 0;
}

.post-body a {
  border-bottom: 1px solid var(--line);
}

.share-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.share-row span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
}

.share-btn:hover {
  border-color: var(--pink);
  color: var(--pink-deep);
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.post-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  max-width: 45%;
}

.post-nav a:hover {
  color: var(--pink-deep);
}

.post-nav .next {
  text-align: right;
}

/* chair profile (about page) */
.profile-head {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.profile-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--paper-raise);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--pink-deep);
  flex: none;
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.tag-chip {
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: var(--paper-raise);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.profile-name {
  font-size: 1.4rem;
  margin: 0;
}

ul.dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

ul.dot-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

ul.dot-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 3px solid var(--pink);
  flex: none;
  margin-top: 0.3rem;
}

ul.dot-cycle li:nth-child(3n+1)::before {
  border-color: var(--green);
}

ul.dot-cycle li:nth-child(3n+2)::before {
  border-color: var(--pink);
}

ul.dot-cycle li:nth-child(3n)::before {
  border-color: var(--blue);
}

.profile-more {
  margin-top: 1.8rem;
}

.profile-more summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--paper-raise);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.profile-more summary::-webkit-details-marker {
  display: none;
}

.profile-more summary:hover {
  border-color: var(--pink);
}

.profile-more summary:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 2px;
}

.profile-more[open] summary {
  border-color: var(--pink);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.summary-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.summary-text strong {
  font-size: 0.94rem;
  color: var(--ink);
}

.summary-text small {
  font-size: 0.76rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  flex: none;
  position: relative;
  transition: transform 0.25s ease;
}

.chev::before {
  content: "";
  position: absolute;
  top: 41%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff8f2;
  border-bottom: 2px solid #fff8f2;
  transform: translate(-50%, -50%) rotate(45deg);
}

.profile-more[open] .chev {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .chev {
    transition: none;
  }
}
.more-body {
  margin-top: 0;
  padding: 1.4rem 1.2rem 1.6rem;
  border: 1.5px solid var(--pink);
  border-top: none;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.more-body h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 700px) {
  .record-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.record-tile {
  background: var(--paper-raise);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.record-tile .r-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.record-tile .r-value {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
}

.record-tile .r-note {
  font-size: 0.7rem;
  color: var(--ink-soft);
}

/* history timeline (about page) */
.history-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.8rem;
}

.history-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
}

.history-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paper);
  opacity: 0.65;
}

.history-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  margin: 1rem 0 0.9rem;
}

.history-underline {
  width: 52px;
  height: 4px;
  background: var(--pink);
  border-radius: 2px;
  margin: 0 auto;
}

.history-timeline {
  max-width: 620px;
  margin: 0 auto;
}

.history-item {
  position: relative;
  padding: 0 0 2.4rem 2.1rem;
  border-left: 2px solid var(--line);
}

.history-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.history-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c);
  border: 3px solid var(--paper);
}

.history-era {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.32rem 0.95rem;
  border-radius: 999px;
  background: var(--tint);
  color: var(--c);
  margin-bottom: 0.8rem;
}

.history-item p {
  margin: 0;
  color: var(--ink-soft);
}

.history-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--c);
  background: var(--paper);
  color: var(--c);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.history-more::after {
  content: "→";
}

.history-more:hover,
.history-more:focus-visible {
  background: var(--c);
  color: #fff8f2;
}

@media (prefers-reduced-motion: reduce) {
  .history-more {
    transition: none;
  }
}
/* contact form */
form.contact-form,
.cf7-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.cf7-wrap .wpcf7-not-valid-tip {
  display: block;
  color: var(--pink-deep);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.cf7-wrap .wpcf7-response-output {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
}

.cf7-wrap .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: var(--green);
  background: color-mix(in srgb, var(--green) 12%, var(--paper));
  color: var(--green-deep);
}

.cf7-wrap .wpcf7-response-output.wpcf7-validation-errors,
.cf7-wrap .wpcf7-response-output.wpcf7-spam-blocked,
.cf7-wrap .wpcf7-response-output.wpcf7-mail-failed-error,
.cf7-wrap .wpcf7-response-output.wpcf7-aborted {
  border-color: var(--pink);
  background: color-mix(in srgb, var(--pink) 10%, var(--paper));
  color: var(--pink-deep);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.86rem;
  font-weight: 700;
}

.field label .req {
  color: var(--pink-deep);
  font-weight: 700;
  margin-left: 0.3rem;
  font-size: 0.72rem;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper-raise);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  width: 100%;
}

.field textarea {
  resize: vertical;
  min-height: 9rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.consent a {
  border-bottom: 1px solid var(--line);
}

.consent input {
  margin-top: 0.25rem;
}

.form-msg {
  border: 1.5px solid var(--green);
  background: color-mix(in srgb, var(--green) 12%, var(--paper));
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  color: var(--green-deep);
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.form-msg.error {
  border-color: var(--pink);
  background: color-mix(in srgb, var(--pink) 10%, var(--paper));
  color: var(--pink-deep);
}

.direct-contact {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.direct-contact strong {
  color: var(--ink);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3.4rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.4rem;
}

.footer-grid .footer-org {
  grid-column: 1/-1;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.site-footer h4 {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 65%, transparent);
  margin: 0 0 0.9rem;
}

.site-footer .brand {
  color: var(--paper);
  margin-bottom: 0.6rem;
}

.site-footer .brand .ring {
  border-color: var(--pink);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.footer-nav a {
  text-decoration: none;
  color: color-mix(in srgb, var(--paper) 88%, transparent);
}

.footer-nav a:hover {
  color: var(--pink);
}

.footer-contact {
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--paper) 82%, transparent);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  margin-top: 2.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(241, 236, 220, 0.16);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.76rem;
  color: color-mix(in srgb, var(--paper) 60%, transparent);
}
/*# sourceMappingURL=style.css.map */