* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  line-height: 1.35;
}

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

h1 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  max-width: 980px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  margin: 0 0 18px;
}

h3 {
  margin-top: 0;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.container {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 20px;
  width: 100%;
}

.site-header {
  background: rgba(250, 250, 248, .96);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container-width);
  min-height: 72px;
  padding: 0 20px;
}

.site-logo {
  color: var(--color-text);
  display: grid;
  line-height: 1.2;
  text-decoration: none;
}

.site-logo__main {
  font-weight: 700;
  white-space: pre-line;
}

.site-logo__sub {
  color: var(--color-text-muted);
  font-size: .78rem;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  position: relative;
  width: 42px;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
  background: var(--color-text);
  content: "";
  height: 2px;
  left: 10px;
  position: absolute;
  width: 20px;
}

.nav-toggle__line {
  top: 19px;
}

.nav-toggle__line::before {
  left: 0;
  top: -7px;
}

.nav-toggle__line::after {
  left: 0;
  top: 7px;
}

.global-nav {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  display: none;
  left: 0;
  padding: 12px 20px 20px;
  position: absolute;
  right: 0;
  top: 72px;
}

.global-nav.is-open {
  display: block;
}

.global-nav__list,
.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav a,
.footer-nav a {
  font-weight: 700;
  text-decoration: none;
}

.global-nav__button {
  background: var(--color-dark);
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  padding: 8px 12px;
}

.hero {
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), rgba(255, 255, 255, .28) 50%, transparent calc(50% + 1px)),
    linear-gradient(45deg, transparent calc(50% - 1px), rgba(255, 255, 255, .2) 50%, transparent calc(50% + 1px)),
    linear-gradient(120deg, #204b70, #2d6a9f 56%, #4a9b6f);
  background-position: center;
  background-size: cover;
  color: #fff;
  min-height: min(76vh, 680px);
}

.hero--home {
  min-height: min(82vh, 720px);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(76vh, 680px);
  padding-bottom: 56px;
  padding-top: 56px;
}

.hero__lead {
  font-size: 1.15rem;
  margin: 20px 0 28px;
}

.hero__question {
  display: inline-block;
}

.hero__meta,
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__meta span {
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 4px;
  color: var(--color-dark);
  font-weight: 700;
  padding: 8px 14px;
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .8);
  color: #fff;
}

.page-hero {
  background: linear-gradient(120deg, rgba(45, 106, 159, .14), rgba(74, 155, 111, .12));
  padding: 64px 0;
}

.page-hero--image {
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), rgba(21, 50, 70, .18) 50%, transparent calc(50% + 1px)),
    linear-gradient(45deg, transparent calc(50% - 1px), rgba(21, 50, 70, .14) 50%, transparent calc(50% + 1px)),
    linear-gradient(90deg, rgba(250, 250, 248, .94), rgba(250, 250, 248, .7)),
    linear-gradient(135deg, rgba(232, 160, 32, .28), rgba(45, 106, 159, .2));
  border-bottom: 1px solid var(--color-border);
  min-height: 320px;
  padding: 96px 0;
}

.page-hero p:last-child {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
  max-width: 720px;
}

.section {
  padding: var(--spacing-lg) 0;
}

.section--muted {
  background: #f1f3ef;
}

.section__head {
  margin-bottom: 28px;
}

.section__head--center,
.content--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__head p,
.section-note {
  color: var(--color-text-muted);
}

.boxed-heading {
  border: 2px solid var(--color-text);
  display: inline-block;
  padding: 4px 24px 6px;
}

.section__head--row {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--3,
.grid--4,
.grid--5 {
  grid-template-columns: 1fr;
}

.band {
  background: var(--color-dark);
  color: #fff;
  padding: 48px 0;
}

.book-band {
  background: #f7f1e4;
  border-bottom: 1px solid rgba(232, 160, 32, .28);
  border-top: 1px solid rgba(232, 160, 32, .28);
  padding: 42px 0;
}

.book-band__inner {
  align-items: center;
  display: grid;
  gap: 24px;
}

.band__inner,
.cta__inner {
  display: grid;
  gap: 24px;
}

.band p {
  max-width: 760px;
}

.cta {
  background: var(--color-primary);
  color: #fff;
  padding: 64px 0;
}

.split {
  display: grid;
  gap: 28px;
}

.content {
  max-width: 840px;
}

.content p {
  margin-top: 0;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  border-left: 4px solid var(--color-accent);
  background: #fff;
  padding: 18px 20px;
}

.timeline--roadmap article {
  border-left-color: var(--color-primary);
}

.feature-grid,
.future-grid,
.join-panels,
.sponsor-menu,
.tile-grid,
.concept-grid {
  display: grid;
  gap: 18px;
}

.concept-grid {
  grid-template-columns: 1fr;
}

.feature-grid {
  grid-template-columns: 1fr;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.feature-card a {
  color: inherit;
  display: block;
  height: 100%;
  padding: 16px;
  text-decoration: none;
}

.feature-card__body {
  padding: 0 16px 18px;
}

.feature-card > .feature-card__media {
  margin: 16px 16px 18px;
}

.feature-card__media {
  aspect-ratio: 3 / 2;
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), var(--color-border) 50%, transparent calc(50% + 1px)),
    linear-gradient(45deg, transparent calc(50% - 1px), var(--color-border) 50%, transparent calc(50% + 1px)),
    #f1f3ef;
  border: 1px solid var(--color-border);
  display: block;
  margin-bottom: 16px;
}

.news-card__media {
  background: #f1f3ef;
  border-bottom: 1px solid var(--color-border);
  display: block;
  margin: -22px -22px 18px;
  overflow: hidden;
}

.news-card__media img {
  aspect-ratio: 3 / 2;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.news-card__media--placeholder {
  aspect-ratio: 3 / 2;
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), var(--color-border) 50%, transparent calc(50% + 1px)),
    linear-gradient(45deg, transparent calc(50% - 1px), var(--color-border) 50%, transparent calc(50% + 1px)),
    #fff;
}

.future-grid .mini-card::before,
.tile-grid .mini-card::before,
.sponsor-menu article::before {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), var(--color-border) 50%, transparent calc(50% + 1px)),
    linear-gradient(45deg, transparent calc(50% - 1px), var(--color-border) 50%, transparent calc(50% + 1px)),
    #fff;
  border: 1px solid var(--color-border);
  content: "";
  display: block;
  margin: 0 auto 16px;
  max-width: 88px;
  width: 42%;
}

.sponsor-menu article::before {
  max-width: 96px;
}

.feature-card__place {
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 8px;
}

.future-section {
  background: #fff;
}

.future-grid {
  gap: 42px 28px;
  margin: 0 auto;
  max-width: 860px;
}

.future-card {
  background: transparent;
  border: 0;
  text-align: left;
}

.future-card__media {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 2px solid var(--color-text);
  display: block;
  margin: 0 auto 14px;
  max-width: 170px;
  width: 100%;
}

.future-card h3 {
  font-family: var(--font-family-base);
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 170px;
}

.concept-card {
  min-height: 100%;
}

.concept-band {
  background: var(--color-dark);
}

.concept-band .eyebrow {
  color: #f4c76d;
}

.concept-band p {
  max-width: 920px;
}

.concept-note {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  padding: 22px;
}

.concept-note h3 {
  color: #fff;
}

.event-flow {
  display: grid;
  gap: 12px;
}

.event-flow article {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 18px;
}

.event-flow span,
.event-flow strong {
  display: block;
}

.event-flow span {
  color: var(--color-text-muted);
  font-weight: 700;
}

.event-flow strong,
.price {
  color: var(--color-primary);
  font-size: 1.4rem;
}

.section--join {
  background: #fff;
  border-top: 1px solid var(--color-border);
}

.join-panels article,
.sponsor-menu article {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}

.join-panels h3 span {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.supporters-link {
  margin: 28px 0 0;
  text-align: center;
}

.button--outline {
  background: #fff;
  color: var(--color-primary);
}

.button--light-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .8);
  color: #fff;
}

.overview-list {
  display: grid;
  gap: 0;
  margin: 0 auto;
  max-width: 920px;
}

.overview-list div {
  background: #fff;
  border: 1px solid var(--color-border);
  display: grid;
  gap: 10px;
  margin-top: -1px;
  padding: 18px;
}

.overview-list dt {
  font-weight: 700;
}

.overview-list dd {
  margin: 0;
}

.tile-grid {
  grid-template-columns: 1fr;
}

.cta-strip {
  background: var(--color-dark);
  color: #fff;
  padding: 56px 0;
}

.cta-strip p {
  max-width: 880px;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.supporters-board {
  align-items: center;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), var(--color-border) 50%, transparent calc(50% + 1px)),
    #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  justify-content: center;
  min-height: 360px;
}

.timeline strong {
  color: var(--color-primary);
  display: block;
  font-size: 1.5rem;
}

.timeline span {
  font-weight: 700;
}

.form-placeholder,
.empty-message {
  background: #fff;
  border: 1px dashed var(--color-border);
  border-radius: 8px;
  color: var(--color-text-muted);
  padding: 20px;
}

.map-embed {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin: 18px 0;
  overflow: hidden;
}

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

.site-footer {
  background: #18242c;
  color: #fff;
  padding: 42px 0;
}

.site-footer__inner {
  display: grid;
  gap: 24px;
}

.site-footer__name {
  font-weight: 700;
  margin: 0 0 8px;
}

.site-footer__meta,
.site-footer__copy {
  color: rgba(255, 255, 255, .72);
  margin: 0;
}

@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .band__inner,
  .cta__inner,
  .book-band__inner {
    align-items: center;
    grid-template-columns: 1fr auto;
  }

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

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

  .future-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .event-flow {
    grid-template-columns: 1fr 1fr 1.3fr 1.2fr;
  }

  .overview-list div {
    grid-template-columns: 220px 1fr;
  }

  .tile-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

/* Flyer QR destination / official link hub */
.links-hub-page {
  background: #eeebd9;
}

.links-hub-page .site-header,
.links-hub-page .site-footer {
  display: none;
}

.links-hub {
  align-items: center;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, .95) 0 9%, transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(255, 255, 255, .78) 0 8%, transparent 26%),
    #eeebd9;
  display: flex;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(28px, 6vw, 64px) 18px clamp(84px, 10vw, 126px);
  position: relative;
}

.links-hub__card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid #b8b5a9;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(57, 54, 43, .12);
  max-width: 540px;
  padding: clamp(28px, 5vw, 46px);
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.links-hub__brand {
  display: inline-block;
  text-decoration: none;
}

.links-hub__brand img {
  display: block;
  height: auto;
  margin: 0 auto 20px;
  width: clamp(108px, 28vw, 142px);
}

.links-hub__overline {
  color: #e35f42;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  margin: 0 0 5px;
}

.links-hub h1 {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  letter-spacing: .04em;
  margin: 0;
}

.links-hub__lead {
  color: #5f5c55;
  font-size: .92rem;
  margin: 8px 0 26px;
}

.links-hub__nav {
  display: grid;
  gap: 11px;
}

.links-hub__link {
  --link-accent: #202020;
  align-items: center;
  background: #fff;
  border: 1px solid #cbc8be;
  border-radius: 15px;
  color: #202020;
  display: grid;
  gap: 13px;
  grid-template-columns: 46px minmax(0, 1fr) 24px;
  min-height: 70px;
  padding: 10px 15px 10px 11px;
  text-align: left;
  text-decoration: none;
}

.links-hub__link--instagram { --link-accent: #c13584; }
.links-hub__link--x { --link-accent: #111; }
.links-hub__link--youtube { --link-accent: #e62117; }
.links-hub__link--tiktok { --link-accent: #14aab3; }

.links-hub__link.is-available {
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.links-hub__link.is-available:hover,
.links-hub__link.is-available:focus-visible {
  border-color: var(--link-accent);
  box-shadow: 0 7px 18px rgba(40, 38, 30, .1);
  transform: translateY(-2px);
}

.links-hub__link.is-disabled {
  background: #f5f4ef;
  border-style: dashed;
  color: #817e76;
}

.links-hub__icon {
  align-items: center;
  background: var(--link-accent);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: .72rem;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  letter-spacing: -.02em;
  width: 42px;
}

.links-hub__link--youtube .links-hub__icon {
  font-size: .9rem;
}

.links-hub__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.links-hub__text strong {
  font-size: 1rem;
  line-height: 1.4;
}

.links-hub__text small {
  color: #77736b;
  font-size: .7rem;
  line-height: 1.5;
  margin-top: 2px;
}

.links-hub__arrow {
  color: var(--link-accent);
  font-size: 1.15rem;
  justify-self: center;
}

.links-hub__link.is-disabled .links-hub__icon {
  background: #aaa79f;
}

.links-hub__link.is-disabled .links-hub__arrow {
  color: #aaa79f;
}

.links-hub__note {
  color: #69665f;
  font-size: .72rem;
  line-height: 1.7;
  margin: 24px 0 0;
}

.links-hub__cityline {
  bottom: 0;
  height: auto;
  left: 50%;
  max-height: 105px;
  min-width: 720px;
  opacity: .62;
  position: absolute;
  transform: translateX(-50%);
  width: min(1100px, 92vw);
}

@media (max-width: 600px) {
  .links-hub {
    align-items: flex-start;
    padding-left: 14px;
    padding-right: 14px;
  }

  .links-hub__card {
    border-radius: 22px;
    padding: 26px 18px 28px;
  }

  .links-hub__lead {
    margin-bottom: 22px;
  }

  .links-hub__link {
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    min-height: 68px;
  }

  .links-hub__icon {
    height: 40px;
    width: 40px;
  }
}

@media (min-width: 1024px) {
  .tile-grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .concept-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* --------------------------------------------------------------------------
   260712 visual refresh: editorial white space and hand-drawn logo system.
   -------------------------------------------------------------------------- */
.site-header {
  background: #fff;
  border: 0;
  position: relative;
}

.site-header__inner {
  max-width: 1280px;
  min-height: 64px;
}

.site-logo {
  display: block;
  width: 200px;
}

.site-logo img {
  display: block;
  height: auto;
  width: 100%;
}

.global-nav a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.global-nav__button,
.redesign-button,
.redesign-small-button {
  background: #fff;
  border: 1px solid #222;
  border-radius: 0;
  color: #222;
}

.redesign-home {
  background: #fff;
  color: #202020;
}

.redesign-home h1,
.redesign-home h2,
.redesign-home h3,
.redesign-home p {
  font-family: var(--font-family-base);
}

.redesign-kicker {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  margin: 0 0 18px;
}

.redesign-hero__intro {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding-bottom: 32px;
  padding-top: 34px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   260803 PDF design alignment: overview, spots, supporters, and support pages.
   -------------------------------------------------------------------------- */
.design-subpage {
  --design-accent: #e85639;
  --design-ink: #1f1f1f;
  --design-muted: #666a70;
  --design-paper: #f6f5ee;
  background: #fff;
  color: var(--design-ink);
  font-family: var(--font-family-base);
}

.design-subpage *,
.design-subpage *::before,
.design-subpage *::after {
  box-sizing: border-box;
}

.design-shell {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.design-shell--narrow {
  max-width: 920px;
}

.design-section {
  padding-bottom: clamp(72px, 8vw, 120px);
  padding-top: clamp(64px, 7vw, 104px);
}

.design-overline {
  color: var(--design-accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.design-overline span {
  margin-left: 8px;
}

.design-banner {
  align-items: center;
  background-image: linear-gradient(90deg, rgba(9, 15, 18, .7), rgba(9, 15, 18, .22)), var(--design-banner-image);
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: clamp(260px, 30vw, 400px);
  position: relative;
}

.design-banner__content {
  color: #fff;
}

.design-banner .design-overline {
  color: rgba(255, 255, 255, .82);
}

.design-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  letter-spacing: .03em;
  line-height: 1.12;
  margin: 0;
}

/* Overview */
.overview-page {
  --design-accent: #1f1f1f;
}

.overview-page .design-banner h1,
.overview-page__content h2,
.overview-spec dt,
.overview-spec dd {
  font-family: var(--font-family-base);
}

.overview-page .design-banner h1 {
  font-weight: 700;
  letter-spacing: .02em;
}

.overview-page__content h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: .01em;
  margin: 0 0 34px;
}

.overview-spec {
  background: #fafaf7;
  border-top: 1px solid #deded9;
  margin: 0;
}

.overview-spec > div {
  border-bottom: 1px solid #deded9;
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
}

.overview-spec dt,
.overview-spec dd {
  line-height: 1.9;
  margin: 0;
  padding: 20px 24px;
}

.overview-spec dt {
  align-items: center;
  color: #1f1f1f;
  display: flex;
  font-size: .9rem;
  font-weight: 500;
}

.overview-spec dd {
  border-left: 1px solid #deded9;
  color: #1f1f1f;
  font-size: .95rem;
  font-weight: 400;
}

/* Spots */
.spot-hero,
.support-hero {
  padding-bottom: clamp(54px, 6vw, 86px);
  padding-top: clamp(64px, 7vw, 108px);
}

.support-hero {
  padding-bottom: clamp(48px, 5vw, 72px);
  padding-top: clamp(42px, 4.5vw, 64px);
}

.spot-hero__grid,
.support-hero__grid {
  align-items: end;
  display: grid;
  gap: clamp(34px, 6vw, 88px);
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.3fr);
}

.spot-hero__copy h1,
.support-hero__copy h1 {
  font-size: clamp(2.25rem, 3.4vw, 3rem);
  letter-spacing: .03em;
  line-height: 1.06;
  margin: 0 0 18px;
}

.support-hero__copy h1 {
  font-weight: 500;
  letter-spacing: .01em;
}

.spot-hero__copy > p:last-of-type,
.support-hero__copy > p:last-of-type {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.9;
  margin: 0;
}

.support-hero__copy > p:last-of-type {
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
}

.spot-hero__copy > img {
  display: block;
  margin-top: 38px;
  max-width: 320px;
  width: 90%;
}

.spot-hero__image,
.support-hero__image {
  aspect-ratio: 1.48 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.support-hero__image {
  aspect-ratio: 4 / 3;
}

.spot-list-section {
  padding-top: 8px;
}

.spot-filter {
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 38px;
}

.spot-filter .filter-button {
  background: #f5f5f2;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #383838;
  min-width: 72px;
  padding: 9px 18px;
}

.spot-filter .filter-button:hover,
.spot-filter .filter-button.is-active {
  background: #5f6468;
  border-color: #5f6468;
  color: #fff;
}

.spot-page .pavilion-list {
  align-items: stretch;
  gap: 24px;
}

.spot-page .pavilion-card {
  border: 1px solid #424242;
  border-radius: 18px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.spot-page .pavilion-card__media {
  aspect-ratio: 1.55 / 1;
  background: #efefe9;
  border-bottom: 1px solid #424242;
  display: block;
  overflow: hidden;
}

.spot-page .pavilion-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}

.spot-page .pavilion-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.spot-page .pavilion-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.spot-page .badge {
  background: #e7f6fb;
  border: 1px solid #8fcfe0;
  border-radius: 999px;
  color: #19758c;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
}

.spot-page .badge--muted {
  background: #fff;
  border-color: #8e9397;
  color: #4f5559;
  margin-left: auto;
}

.spot-page .pavilion-card[data-category-name="商店"] .badge:first-child {
  background: #fff0f6;
  border-color: #eba6bf;
  color: #b8406d;
}

.spot-page .pavilion-card[data-category-name="情報求む"] .badge:first-child {
  background: #fffbea;
  border-color: #d8c14e;
  color: #827011;
}

.spot-page .pavilion-card__title {
  border-bottom: 1px solid #8f8f8f;
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 0 12px;
  padding-bottom: 8px;
}

.spot-page .pavilion-card__title a {
  color: inherit;
  text-decoration: none;
}

.spot-page .pavilion-card__excerpt {
  color: #444;
  font-size: .84rem;
  line-height: 1.8;
  margin: 0 0 14px;
}

.spot-page .pavilion-card__lead {
  color: #252525;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.65;
  margin: 0 0 7px;
}

.spot-page .pavilion-card__meta {
  border-top: 1px solid #ecece7;
  font-size: .76rem;
  margin: 2px 0 15px;
  padding-top: 10px;
}

.spot-page .pavilion-card__meta > div {
  display: grid;
  gap: 8px;
  grid-template-columns: 42px 1fr;
}

.spot-page .pavilion-card__meta dt,
.spot-page .pavilion-card__meta dd {
  margin: 0;
}

.spot-page .pavilion-card__meta dt {
  font-weight: 700;
}

.spot-page .text-link {
  color: #277a89;
  font-size: .82rem;
  font-weight: 700;
  margin-top: auto;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Supporter list */
.supporters-page__content {
  padding-top: clamp(52px, 6vw, 86px);
}

.supporters-page__thanks {
  display: block;
  height: auto;
  margin: 0 0 26px;
  max-width: 380px;
  width: min(70%, 380px);
}

.supporters-page__lead {
  font-size: .94rem;
  line-height: 2;
  margin: 0 0 58px;
}

.supporter-group + .supporter-group {
  margin-top: 58px;
}

.supporter-group h2 {
  border-bottom: 2px solid #252525;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: .02em;
  margin: 0 0 24px;
  padding-bottom: 10px;
}

.supporter-group__row + .supporter-group__row {
  margin-top: 28px;
}

.supporter-group__row h3 {
  background: #64686e;
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  margin: 0 0 12px;
  padding: 8px 14px;
}

.supporter-group__row p {
  font-size: .9rem;
  line-height: 1.9;
  margin: 0;
  padding: 0 14px;
}

.supporter-group__row p.is-pending {
  color: #767676;
}

/* Support request */
.support-hero__copy > img {
  display: block;
  height: 96px;
  margin: 24px 0 0 auto;
  object-fit: contain;
  width: 150px;
}

.support-page__intro {
  padding-top: 30px;
}

.support-intro-card {
  background: #f7f3e9;
  margin-bottom: clamp(62px, 8vw, 98px);
  padding: clamp(24px, 4vw, 38px);
}

.support-intro-card p,
.support-method > p,
.support-detail p,
.support-aftercare p {
  font-size: .92rem;
  line-height: 1.95;
}

.support-intro-card p {
  margin: 0;
}

.support-intro-card p + p {
  margin-top: 10px;
}

.support-page__title {
  border-bottom: 2px solid #292929;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  margin: 0 0 30px;
  padding-bottom: 12px;
}

.support-method {
  padding: 0 0 clamp(56px, 7vw, 82px);
}

.support-method--tinted {
  background: #fffaf6;
  margin-left: -34px;
  margin-right: -34px;
  padding: 32px 34px clamp(56px, 7vw, 74px);
}

.support-method h2 {
  align-items: center;
  background: #64686e;
  color: #fff;
  display: flex;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  gap: 12px;
  margin: 0 0 20px;
  padding: 11px 16px;
}

.support-method h2 span {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, .65);
  display: flex;
  font-size: 1.05em;
  justify-content: center;
  min-width: 28px;
  padding-right: 12px;
}

.support-method > p {
  margin: 0 8px 15px;
}

.support-detail {
  margin: 34px 8px 0;
}

.support-detail h3 {
  font-size: .98rem;
  margin: 0 0 12px;
  padding-left: 17px;
  position: relative;
}

.support-detail h3::before {
  background: #343434;
  content: "";
  height: 17px;
  left: 0;
  position: absolute;
  top: .15em;
  width: 3px;
}

.support-detail p {
  margin: 0 0 16px;
}

.support-detail small {
  color: #444;
  font-size: .78rem;
}

.support-actions {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0;
}

.support-action {
  align-items: center;
  background: #5b3cad;
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  font-size: .82rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 45px;
  padding: 10px 20px;
  text-decoration: none;
}

.support-action > span {
  align-items: center;
  background: rgba(255, 255, 255, .95);
  border-radius: 999px;
  color: #5b3cad;
  display: inline-flex;
  font-size: .66rem;
  height: 24px;
  justify-content: center;
  min-width: 24px;
  padding: 0 5px;
}

.support-action--line {
  background: #30b848;
}

.support-action--line > span {
  color: #28a840;
}

.support-action.is-disabled {
  cursor: not-allowed;
  opacity: .52;
}

.support-action small {
  background: rgba(0, 0, 0, .18);
  border-radius: 3px;
  font-size: .62rem;
  margin-left: 2px;
  padding: 2px 5px;
}

.bank-details {
  background: #eee;
  display: inline-block;
  font-size: .85rem;
  margin: 0;
  min-width: 330px;
  padding: 14px 18px;
}

.bank-details > div {
  display: grid;
  gap: 12px;
  grid-template-columns: 72px 1fr;
}

.bank-details dt,
.bank-details dd {
  margin: 0;
}

.bank-details dt {
  font-weight: 700;
}

.support-aftercare,
.support-notices {
  margin-top: 26px;
}

.support-aftercare h2,
.support-notices h2 {
  border-bottom: 2px solid #292929;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  margin: 0 0 18px;
  padding-bottom: 10px;
}

.support-aftercare a {
  color: #277a89;
  font-size: .85rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.support-notices {
  margin-top: 70px;
}

.support-notices ul {
  font-size: .78rem;
  line-height: 1.8;
  margin: 0;
  padding-left: 1.4em;
}

@media (max-width: 767px) {
  .design-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .design-banner {
    min-height: 240px;
  }

  .design-banner h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .overview-spec > div {
    display: block;
  }

  .overview-spec dt,
  .overview-spec dd {
    padding: 14px 16px;
  }

  .overview-spec dt {
    background: #f0f0eb;
  }

  .overview-spec dd {
    border-left: 0;
    font-size: .9rem;
    padding-top: 10px;
  }

  .spot-hero,
  .support-hero {
    padding-top: 46px;
  }

  .spot-hero__grid,
  .support-hero__grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .spot-hero__copy h1,
  .support-hero__copy h1 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
  }

  .spot-hero__copy > img {
    margin-top: 26px;
    width: 72%;
  }

  .spot-hero__image,
  .support-hero__image {
    aspect-ratio: 1.65 / 1;
  }

  .support-hero__copy > p:last-of-type {
    white-space: normal;
  }

  .support-hero__image {
    aspect-ratio: 4 / 3;
  }

  .spot-filter {
    margin-bottom: 26px;
  }

  .spot-filter .filter-button {
    min-width: 0;
    padding: 8px 14px;
  }

  .spot-page .pavilion-list {
    grid-template-columns: 1fr;
  }

  .supporters-page__lead br {
    display: none;
  }

  .supporter-group + .supporter-group {
    margin-top: 46px;
  }

  .support-method--tinted {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .support-method h2 {
    align-items: flex-start;
    line-height: 1.55;
  }

  .support-method > p,
  .support-detail {
    margin-left: 0;
    margin-right: 0;
  }

  .support-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .support-action {
    width: 100%;
  }

  .bank-details {
    min-width: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spot-page .pavilion-card__media img {
    transition: none;
  }
}

.redesign-hero__intro--no-logo {
  min-height: 170px;
  padding-bottom: 30px;
  padding-top: 30px;
}

.redesign-hero__logo {
  display: block;
  height: 158px;
  max-width: min(320px, 78vw);
  width: auto;
}

.redesign-hero__date {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin: 12px 0 7px;
}

.redesign-label {
  background: #35aee1;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 10px;
  text-decoration: none;
}

.redesign-hero__image {
  background-position: center;
  background-size: cover;
  height: clamp(260px, 44vw, 540px);
  overflow: hidden;
  position: relative;
}

.redesign-hero__video {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  width: 100%;
}

.redesign-message {
  padding-bottom: clamp(70px, 10vw, 140px);
  padding-top: clamp(64px, 9vw, 120px);
}

.redesign-message__grid {
  display: grid;
  gap: 28px;
}

.redesign-message__lead img {
  display: block;
  height: 150px;
  margin: 50px auto 0;
  object-fit: contain;
  width: auto;
}

.redesign-message h1 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: .03em;
  margin: 0;
}

.redesign-message__reader {
  min-width: 0;
}

.redesign-message__copy p {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 2;
  margin: 0;
}

.redesign-message__copy p + p {
  margin-top: 2.7em;
}

.redesign-message__brand {
  font-size: 1.08rem !important;
  letter-spacing: .08em !important;
}

.redesign-news {
  background: #eeebd9;
  padding: 25px 0;
}

.redesign-news__inner {
  display: grid;
  gap: 20px;
}

.redesign-news__content {
  min-width: 0;
}

.redesign-small-button {
  display: inline-block;
  font-size: .68rem;
  padding: 3px 17px;
  text-decoration: none;
}

.redesign-news__cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.redesign-news__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.redesign-news__more {
  border: 1px solid currentColor;
  box-sizing: border-box;
  font-size: .88rem;
  line-height: 1.4;
  min-width: 140px;
  padding: 9px 22px;
  text-align: center;
  transition: background-color .2s ease, color .2s ease;
}

.redesign-news__more:hover,
.redesign-news__more:focus-visible {
  background: #1d1d1d;
  color: #fff;
}

.redesign-news__cards .news-card {
  aspect-ratio: 1.6 / 1;
  border: 1px solid #9b998e;
  border-radius: 0;
  box-shadow: none;
  min-width: 0;
  overflow: hidden;
}

.redesign-news__placeholder {
  aspect-ratio: 1.6 / 1;
}

.redesign-news__cards .news-card__link {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: clamp(14px, 2vw, 22px);
}

.redesign-news__cards .news-card__excerpt {
  display: -webkit-box;
  font-size: .82rem;
  line-height: 1.65;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.redesign-news__placeholder {
  align-items: center;
  background: #fff;
  border: 1px solid #9b998e;
  color: #777;
  display: flex;
  font-size: .72rem;
  justify-content: center;
  padding: 8px;
  text-align: center;
  text-decoration: none;
}

.redesign-news__placeholder::before,
.redesign-news__placeholder::after {
  content: none;
}

.redesign-news__placeholder { position: relative; overflow: hidden; }
.redesign-news__placeholder span { background: #fff; padding: 3px; position: relative; z-index: 1; }

.redesign-projects {
  padding-bottom: clamp(80px, 12vw, 160px);
  padding-top: clamp(80px, 12vw, 160px);
}

.redesign-projects__head {
  margin-left: auto;
  max-width: 280px;
}

.redesign-projects__head h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.1rem);
  margin: 0 0 30px;
  writing-mode: vertical-rl;
}

.redesign-projects__head > p:last-child {
  color: #555;
  font-size: .78rem;
  line-height: 1.8;
}

.redesign-projects__head > img {
  display: block;
  height: 140px;
  margin: 24px auto;
  object-fit: contain;
  width: auto;
}

.redesign-projects__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 35px;
}

.redesign-project {
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 10px;
  color: #202020;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 145px;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.redesign-project--available {
  border-color: #4b4b4b;
}

.redesign-project--available:hover {
  box-shadow: 3px 4px 0 #222;
  transform: translate(-2px, -2px);
}

.redesign-project--coming-soon {
  background: #f4f3ed;
  border-color: #c7c5bc;
  border-style: dashed;
  color: #77756f;
}

.redesign-project--coming-soon .redesign-project__icon {
  filter: grayscale(1);
  opacity: .42;
}

.redesign-project__icon { display: block; height: 96px; margin: 0 auto auto; max-width: 74%; object-fit: contain; width: 108px; }
.redesign-project strong { border-bottom: 1px solid #999; font-size: .85rem; line-height: 1.35; padding-bottom: 7px; }
.redesign-project small { color: #e5645a; font-size: .62rem; margin-top: 6px; }

.redesign-project--coming-soon small {
  color: #888680;
}

.redesign-project__state {
  border-radius: 999px;
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-top: 9px;
  padding: 4px 10px;
}

.redesign-project--available .redesign-project__state {
  background: #222;
  color: #fff;
}

.redesign-project--coming-soon .redesign-project__state {
  background: #dedcd4;
  color: #65635e;
}

.redesign-projects__more {
  align-items: center;
  display: flex;
  font-size: 1.25rem;
  justify-content: center;
  margin: 0;
  min-height: 145px;
}

.redesign-projects__cityline {
  border-bottom: 1px solid #aaa;
  display: block;
  height: auto;
  margin-top: 58px;
  max-height: 130px;
  object-fit: contain;
  object-position: right bottom;
  width: 100%;
}

.redesign-map {
  padding-bottom: clamp(75px, 12vw, 150px);
}

.redesign-map h2,
.redesign-support h2 {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  margin-bottom: 10px;
}

.redesign-map > p:not(.redesign-kicker):not(.redesign-center) {
  color: #555;
  font-size: .83rem;
  margin-bottom: 24px;
}

.redesign-map__image { display: block; }
.redesign-map__image img { border: 1px solid #ddd; display: block; height: auto; width: 100%; }
.redesign-center { margin: 30px 0 0; text-align: center; }
.redesign-button { display: inline-block; font-size: .88rem; font-weight: 700; padding: 11px 34px; text-decoration: none; }

.redesign-map__experience {
  background: #f3f3ef;
  border: 1px solid #b8b8b2;
  height: clamp(520px, 62vw, 680px);
  overflow: hidden;
  position: relative;
}

.redesign-map__frame {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.redesign-map__activate,
.redesign-map__deactivate {
  display: none;
}

.redesign-map__mobile-preview {
  display: none;
}

.redesign-map__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  margin-top: 28px;
  text-align: center;
}

.redesign-map__actions p {
  color: #555;
  font-size: .78rem;
  margin: 0;
}

.redesign-map__actions .redesign-button span {
  display: inline-block;
  margin-left: 5px;
}

.redesign-support {
  align-items: center;
  display: grid;
  gap: 36px;
  padding-bottom: clamp(84px, 12vw, 160px);
}

.redesign-support > img { display: block; height: auto; width: 100%; }
.redesign-support__content > p:not(.redesign-kicker) { color: #555; font-size: .84rem; }
.redesign-support__content > a { align-items: center; border-bottom: 1px solid #aaa; color: #222; display: flex; font-size: .88rem; justify-content: space-between; padding: 14px 0; text-decoration: none; }
.redesign-support__content > a strong,
.redesign-support__content > a small { display: block; }
.redesign-support__content > a strong { font-size: .94rem; }
.redesign-support__content > a small { font-size: .72rem; font-weight: 400; margin-top: 5px; }
.redesign-support__content > a b { font-size: 1.4rem; line-height: .8; }

.redesign-thanks {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding-bottom: clamp(100px, 13vw, 180px);
  text-align: center;
}

.redesign-thanks img {
  display: block;
  height: auto;
  max-width: 660px;
  width: 90%;
}

.site-footer { background: #1d2223; padding: 35px 0; }
.site-footer__logo { filter: invert(1); height: auto; margin-bottom: 12px; width: 96px; }

@media (max-width: 767px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header__inner {
    min-height: 58px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-logo {
    width: 200px;
  }

  .redesign-hero__intro {
    min-height: 265px;
    padding-top: 26px;
  }

  .redesign-hero__intro--no-logo {
    min-height: 158px;
    padding-bottom: 28px;
    padding-top: 28px;
  }

  .redesign-hero__logo {
    height: 138px;
  }

  .redesign-hero__image {
    background-position: center;
    height: 260px;
  }

  .redesign-message {
    padding-bottom: 82px;
    padding-top: 72px;
  }

  .redesign-message__grid {
    gap: 38px;
  }

  .redesign-message h1 {
    font-size: clamp(1.25rem, 6.2vw, 1.65rem);
    line-height: 1.55;
  }

  .redesign-message__lead img {
    height: 130px;
    margin-top: 32px;
  }

  .redesign-message__reader {
    width: 100%;
  }

  .redesign-message__copy p {
    font-size: .92rem;
    letter-spacing: .025em;
    line-height: 1.95;
  }

  .redesign-news {
    padding-bottom: 32px;
    padding-top: 28px;
  }

  .redesign-news__cards {
    display: flex;
    gap: 12px;
    margin-right: -18px;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-right: 18px;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .redesign-news__cards > * {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }

  .redesign-news__footer {
    justify-content: center;
    margin-top: 14px;
  }

  .redesign-news__more {
    min-width: 160px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .redesign-projects {
    padding-bottom: 90px;
    padding-top: 90px;
  }

  .redesign-projects__head {
    margin: 0;
    max-width: none;
  }

  .redesign-projects__head h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    writing-mode: horizontal-tb;
  }

  .redesign-projects__head > img {
    float: right;
    height: 105px;
    margin: -8px 0 10px 18px;
  }

  .redesign-projects__head > p:last-child {
    font-size: .8rem;
    line-height: 1.9;
    min-height: 120px;
  }

  .redesign-projects__grid {
    gap: 10px;
    margin-top: 34px;
  }

  .redesign-project {
    min-height: 170px;
    padding: 13px 9px;
  }

  .redesign-project__icon {
    height: 84px;
    max-width: 76%;
    width: 96px;
  }

  .redesign-project strong {
    font-size: clamp(.72rem, 3.4vw, .86rem);
  }

  .redesign-project small {
    font-size: clamp(.52rem, 2.5vw, .62rem);
    white-space: nowrap;
  }

  .redesign-projects__more {
    min-height: 150px;
  }

  .redesign-projects__cityline {
    margin-top: 42px;
  }

  .redesign-map {
    padding-bottom: 90px;
  }

  .redesign-map__experience {
    border-left: 0;
    border-right: 0;
    height: min(430px, 58vh);
    margin-left: -18px;
    margin-right: -18px;
    display: none;
  }

  .redesign-map__mobile-preview {
    background: #efefe9;
    border: 1px solid #b8b8b2;
    color: #fff;
    display: block;
    margin-left: -18px;
    margin-right: -18px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
  }

  .redesign-map__mobile-preview img {
    display: block;
    height: min(600px, 140vw);
    object-fit: cover;
    object-position: top center;
    width: 100%;
  }

  .redesign-map__mobile-preview::after {
    background: linear-gradient(transparent, rgba(0,0,0,.64));
    bottom: 0;
    content: "";
    height: 34%;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
  }

  .redesign-map__mobile-preview > span {
    align-items: center;
    bottom: 18px;
    display: flex;
    font-size: .88rem;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    left: 18px;
    position: absolute;
    right: 18px;
    text-shadow: 0 1px 4px rgba(0,0,0,.45);
    z-index: 1;
  }

  .redesign-map__mobile-preview > span b {
    font-size: 1.05rem;
  }

  .redesign-map__frame {
    pointer-events: none;
  }

  .redesign-map__activate {
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(255,255,255,.02) 35%, rgba(255,255,255,.94) 100%);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 24px 18px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .redesign-map__activate button {
    background: #202424;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    max-width: 320px;
    padding: 13px 26px;
    text-align: center;
    width: 100%;
  }

  .redesign-map__activate span,
  .redesign-map__activate small {
    display: block;
  }

  .redesign-map__activate span {
    font-size: .95rem;
    font-weight: 700;
  }

  .redesign-map__activate small {
    color: rgba(255,255,255,.75);
    font-size: .65rem;
    margin-top: 4px;
  }

  .redesign-map__deactivate {
    background: #202424;
    border: 0;
    border-radius: 999px;
    bottom: max(18px, env(safe-area-inset-bottom));
    box-shadow: 0 5px 18px rgba(0,0,0,.3);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: .7rem;
    font-weight: 700;
    left: 50%;
    padding: 11px 20px;
    position: absolute;
    right: auto;
    top: auto;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 4;
  }

  .redesign-map__experience.is-active .redesign-map__frame {
    pointer-events: auto;
  }

  .redesign-map__experience.is-active {
    border: 0;
    box-sizing: border-box;
    height: 100dvh;
    inset: 0;
    margin: 0;
    max-height: none;
    position: fixed;
    width: auto;
    z-index: 1000;
  }

  .redesign-map__experience.is-active .redesign-map__activate {
    display: none;
  }

  .redesign-map__experience.is-active .redesign-map__deactivate {
    display: block;
  }

  .redesign-map__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
  }

  .redesign-map__actions p {
    font-size: .75rem;
    line-height: 1.7;
    padding: 0 8px;
  }

  .redesign-map__actions .redesign-button {
    border-color: #202424;
    display: block;
    padding: 14px 20px;
    width: 100%;
  }

  body.is-map-experience-active {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .redesign-map h2,
  .redesign-support h2 {
    line-height: 1.55;
  }

  .redesign-support {
    gap: 30px;
    padding-bottom: 75px;
  }

  .redesign-support__content > a {
    gap: 14px;
    padding: 17px 0;
  }

  .redesign-support__content > a small {
    line-height: 1.65;
  }

  .redesign-thanks {
    gap: 34px;
    padding-bottom: 100px;
  }
}

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

@media (min-width: 768px) {
  .redesign-message__grid { grid-template-columns: minmax(260px, .65fr) 1.35fr; }
  .redesign-news__inner { align-items: center; grid-template-columns: 150px 1fr; }
  .redesign-projects { display: grid; gap: clamp(40px, 10vw, 150px); grid-template-columns: minmax(0, 1fr) 260px; }
  .redesign-projects__head { grid-column: 2; grid-row: 1; margin: 0; }
  .redesign-projects__head h2 { margin-left: auto; margin-right: auto; }
  .redesign-projects__grid { grid-column: 1; grid-row: 1; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; }
  .redesign-project { min-height: 175px; }
  .redesign-projects__more { min-height: 175px; }
  .redesign-projects__cityline { grid-column: 1 / -1; }
  .redesign-support { grid-template-columns: minmax(260px, .8fr) 1fr; }
}

@media (min-width: 1024px) {
  .redesign-message__grid {
    grid-template-columns: minmax(460px, .85fr) minmax(0, 1.15fr);
  }

  .redesign-message h1 {
    white-space: nowrap;
  }

  .nav-toggle {
    display: none;
  }

  .global-nav {
    background: transparent;
    border: 0;
    display: block;
    padding: 0;
    position: static;
  }

  .global-nav__list {
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }

  .footer-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Child Challenge Market
   Image slots resolve automatically from assets/images/kcm/{slot-name}.*. */
.kcm-page {
  --kcm-orange: #f17a42;
  --kcm-orange-soft: #fff3ec;
  --kcm-blue: #66add0;
  --kcm-green: #43bd4c;
  --kcm-ink: #241f1d;
  background: #fff;
  color: var(--kcm-ink);
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
}

.kcm-page h1,
.kcm-page h2,
.kcm-page h3 {
  font-family: inherit;
}

.kcm-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
  width: 100%;
}

.kcm-media {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.kcm-media-placeholder {
  align-items: center;
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), #e5ddd8 50%, transparent calc(50% + 1px)),
    linear-gradient(45deg, transparent calc(50% - 1px), #e5ddd8 50%, transparent calc(50% + 1px)),
    #faf7f4;
  border: 1px dashed #c8bbb3;
  color: #8a7e77;
  display: flex;
  flex-direction: column;
  gap: 7px;
  height: 100%;
  justify-content: center;
  min-height: 150px;
  padding: 20px;
  text-align: center;
  width: 100%;
}

.kcm-media-placeholder span {
  background: rgba(255, 255, 255, .9);
  font-size: .8rem;
  font-weight: 700;
  padding: 3px 8px;
}

.kcm-media-placeholder small {
  background: rgba(255, 255, 255, .9);
  font-size: .65rem;
  letter-spacing: .04em;
  padding: 2px 6px;
}

.kcm-hero {
  padding: clamp(80px, 10vw, 130px) 0 clamp(74px, 9.8vw, 125px);
}

.kcm-hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(30px, 7vw, 90px);
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.5fr);
}

.kcm-hero__copy {
  text-align: center;
}

.kcm-hero__character {
  height: 284px;
  margin: 0 auto 20px;
  max-width: 335px;
}

.kcm-hero__copy .kcm-media-placeholder {
  min-height: 190px;
}

.kcm-overline {
  font-size: clamp(.75rem, 1.3vw, 1rem);
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 7px;
}

.kcm-page .kcm-hero h1 {
  color: var(--kcm-orange);
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: nowrap;
}

.kcm-hero__date {
  border-bottom: 1px solid currentColor;
  border-top: 1px solid currentColor;
  display: inline-block;
  font-size: clamp(1rem, 2.3vw, 1.45rem);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.45;
  margin: 30px 0 0;
  padding: 8px 18px;
}

.kcm-hero__visual {
  aspect-ratio: 1.408;
  min-width: 0;
}

.kcm-hero__market,
.kcm-hero__visual .kcm-media-placeholder {
  border-radius: 2px;
  object-fit: contain;
}

.kcm-section-label {
  color: var(--kcm-orange);
  font-size: .92rem;
  font-weight: 700;
  margin: 0 0 24px;
}

.kcm-concept {
  background: var(--kcm-orange-soft);
  padding: 30px 0 57px;
}

.kcm-page .kcm-concept h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  letter-spacing: -.025em;
  margin-bottom: 14px;
  white-space: nowrap;
}

.kcm-concept__lead {
  margin: 0;
}

.kcm-role-grid {
  display: grid;
  gap: 96px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 68px auto 0;
  max-width: 1030px;
  padding: 0;
}

.kcm-role {
  background: #fff;
  border: 2px solid #f2b18e;
  border-radius: 7px;
  padding: 6px 20px;
  text-align: center;
}

.kcm-role h3 {
  color: var(--kcm-orange);
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1;
  margin: 0 0 4px;
}

.kcm-role--buy {
  border-color: #afd7e8;
}

.kcm-role--buy h3 {
  color: var(--kcm-blue);
}

.kcm-role strong {
  display: block;
  font-size: .9rem;
  line-height: 1.2;
}

.kcm-role__image {
  height: 134px;
  margin: 4px auto;
  max-width: 290px;
}

.kcm-role--buy .kcm-role__image {
  height: 107px;
  max-width: 230px;
  transform: scale(1.3);
  transform-origin: center;
}

.kcm-role .kcm-media-placeholder {
  min-height: 175px;
}

.kcm-role p {
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.kcm-challenge {
  background: #ece8d8;
  padding: 25px 0 15px;
  position: relative;
}

.kcm-challenge__title {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.kcm-page .kcm-challenge h2 {
  color: #563a22;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  letter-spacing: -.025em;
  margin: 0 0 18px;
  white-space: nowrap;
}

.kcm-challenge h2 em {
  border-bottom: 7px solid #f4df85;
  font-style: normal;
}

.kcm-challenge__image {
  height: 122px;
  max-width: 155px;
  position: relative;
  transform: translateY(12px);
  z-index: 2;
}

.kcm-challenge__decor {
  align-items: flex-end;
  display: flex;
  flex: 0 0 389px;
  height: 145px;
  position: relative;
  width: 389px;
}

.kcm-challenge__bunting {
  height: 145px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
}

.kcm-challenge__title .kcm-media-placeholder {
  min-height: 150px;
}

.kcm-story-card {
  background: #fff;
  border: 2px solid #f4b28f;
  border-radius: 5px;
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  line-height: 1.9;
  padding: 32px;
}

.kcm-story-card p {
  margin: 0;
}

.kcm-story-card p + p {
  margin-top: .25em;
}

.kcm-story-card strong {
  color: #624126;
  text-decoration: underline;
  text-decoration-color: #e7d582;
  text-decoration-thickness: 5px;
  text-underline-offset: -2px;
}

.kcm-place {
  padding: 61px 0 28px;
}

.kcm-place .kcm-shell {
  position: relative;
}

.kcm-place__visual {
  aspect-ratio: 1114 / 303;
}

.kcm-place__bridge,
.kcm-place__visual .kcm-media-placeholder {
  border-radius: 22px;
  object-fit: cover;
}

.kcm-place__card {
  align-items: center;
  align-content: center;
  background: rgba(255, 255, 255, .92);
  border-radius: 25px;
  bottom: clamp(12px, 1.3vw, 18px);
  display: grid;
  column-gap: 14px;
  grid-template-areas:
    "heading illustration"
    "copy copy";
  grid-template-columns: minmax(0, 1fr) 178px;
  padding: 24px 28px;
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  row-gap: 14px;
  top: clamp(12px, 1.3vw, 18px);
  width: min(58%, 665px);
}

.kcm-page .kcm-place h2 {
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  grid-area: heading;
  letter-spacing: -.025em;
  line-height: 1.25;
  margin: 0;
}

.kcm-place__heading-line {
  display: block;
  white-space: nowrap;
}

.kcm-place h2 em {
  color: var(--kcm-orange);
  font-style: normal;
}

.kcm-place__card p {
  grid-area: copy;
  font-weight: 700;
  margin: 0;
}

.kcm-place__illustration {
  grid-area: illustration;
  height: 103px;
  transform: scale(1.6);
  transform-origin: center;
  width: 178px;
}

.kcm-place__card .kcm-media-placeholder {
  min-height: 140px;
}

.kcm-overview {
  padding: 77px 0 24px;
}

.kcm-overview .kcm-shell {
  position: relative;
}

.kcm-page .kcm-overview h2,
.kcm-page .kcm-flow h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 28px;
}

.kcm-page .kcm-overview h2 {
  background: #fff;
  left: clamp(68px, 6vw, 88px);
  margin: 0;
  padding: 0 12px;
  position: absolute;
  top: -18px;
  z-index: 1;
}

.kcm-overview__grid {
  border: 1px solid #7c7c7c;
  border-radius: 35px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  padding: 20px;
}

.kcm-overview__item {
  display: grid;
  gap: 0 13px;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto auto;
  min-height: 103px;
  padding: 17px;
}

.kcm-overview__item:not(:nth-child(4n + 1)) {
  border-left: 1px dashed #999;
}

.kcm-overview__item:nth-child(n + 5) {
  border-top: 1px dashed #999;
}

.kcm-overview__icon-image {
  align-self: center;
  grid-row: 1 / 3;
  height: 60px;
  object-fit: contain;
  transform-origin: center;
  width: 60px;
}

/* Normalize visible artwork bounds; source SVG viewBoxes contain unequal whitespace. */
.kcm-overview__icon-image--clock {
  transform: translate(0, -1.8px) scale(1.06);
}

.kcm-overview__icon-image--flag {
  transform: translate(-2px, -2.3px) scale(1.14);
}

.kcm-overview__icon-image--list {
  transform: translate(.8px, -.6px) scale(1.44);
}

.kcm-overview__icon-image--people {
  transform: translate(-1.7px, -.3px) scale(.83);
}

.kcm-overview__icon-image--pin {
  transform: translate(2.3px, -.5px) scale(1.09);
}

.kcm-overview__icon-image--rain {
  transform: translate(0, -1.3px) scale(1.02);
}

.kcm-overview__icon-image--square {
  transform: translate(1px, .2px) scale(1.2);
}

.kcm-overview__icon-image--yen {
  transform: translate(-.5px, -1px) scale(1.09);
}

.kcm-overview__item dt {
  color: var(--kcm-orange);
  font-size: .76rem;
  font-weight: 700;
}

.kcm-overview__item dd {
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.kcm-overview__note {
  font-size: .72rem;
  font-weight: 700;
  margin: 8px 2% 0 0;
  text-align: right;
}

.kcm-flow {
  padding: 49px 0 48px;
}

.kcm-page .kcm-flow h2 {
  margin-bottom: 6px;
}

.kcm-flow__list {
  counter-reset: kcm-step;
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0 15px;
}

.kcm-flow__list li {
  align-items: center;
  border: 1px solid #777;
  border-radius: 4px;
  display: grid;
  gap: 12px;
  grid-template-columns: 70px minmax(0, 1fr);
  min-height: 132px;
  padding: 20px 18px 10px;
  position: relative;
  text-align: left;
}

.kcm-flow__list li:not(:last-child)::after {
  border-bottom: 14px solid transparent;
  border-left: 14px solid #777;
  border-top: 14px solid transparent;
  content: "";
  position: absolute;
  right: -26px;
  top: calc(50% - 14px);
}

.kcm-flow__number {
  background: var(--kcm-orange);
  border-radius: 4px 4px 0 0;
  color: #fff;
  font-size: .72rem;
  left: -1px;
  padding: 2px 9px;
  position: absolute;
  top: -1px;
}

.kcm-flow__number b {
  font-size: 1.4rem;
}

.kcm-flow__list li:last-child .kcm-flow__number {
  background: #7799d1;
}

.kcm-flow__list strong {
  display: block;
  font-size: .96rem;
  line-height: 1.5;
}

.kcm-flow__list small {
  display: block;
  font-size: .7rem;
  line-height: 1.45;
  margin-top: 6px;
}

.kcm-flow__icon {
  height: 68px;
  object-fit: contain;
  transform-origin: center;
  width: 68px;
}

.kcm-flow__icon--pdf-icon {
  transform: translate(1px, 1.4px) scale(1.03);
}

.kcm-flow__icon--line-icon {
  transform: translate(-.6px, .3px) scale(1.04);
}

.kcm-flow__icon--form-icon {
  transform: translate(-1.2px, .5px) scale(.97);
}

.kcm-flow__icon--shop-icon {
  transform: translate(0, -1.3px) scale(.98);
}

.kcm-guardians {
  background: var(--kcm-orange-soft);
  padding: 29px 0;
}

.kcm-guardians__inner {
  align-items: center;
  display: grid;
  gap: clamp(22px, 4vw, 48px);
  grid-template-columns: 200px 1fr auto;
}

.kcm-guardians__image {
  height: 120px;
  width: 170px;
}

.kcm-guardians__inner > .kcm-media-placeholder {
  min-height: 150px;
}

.kcm-page .kcm-guardians h2 {
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  letter-spacing: -.025em;
  margin: 0 0 12px;
  white-space: nowrap;
}

.kcm-guardians p {
  font-size: .83rem;
  line-height: 1.65;
  margin: 0;
}

.kcm-button {
  align-items: center;
  border-radius: 9px;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 70px;
  padding: 17px 28px;
  text-align: center;
  text-decoration: none;
}

.kcm-button--outline {
  background: #fff;
  border: 2px solid var(--kcm-orange);
  color: var(--kcm-orange);
  min-width: 300px;
}

.kcm-button.is-disabled {
  cursor: not-allowed;
  opacity: .72;
}

.kcm-button small {
  font-size: .68rem;
}

.kcm-button__icon {
  height: 28px;
  object-fit: contain;
  width: 28px;
}

.kcm-contact {
  padding: 28px 0 75px;
}

.kcm-contact__inner {
  align-items: center;
  background: var(--kcm-green);
  border-radius: 13px;
  color: #fff;
  display: grid;
  gap: clamp(22px, 4vw, 46px);
  grid-template-columns: 290px minmax(0, 1fr) 135px;
  max-width: 1144px;
  overflow: hidden;
  padding-bottom: 0;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 30px;
}

.kcm-contact__phone {
  align-self: end;
  height: 266px;
  width: 290px;
}

.kcm-contact__inner > .kcm-media-placeholder {
  background-color: rgba(255, 255, 255, .94);
  color: #4b6350;
  min-height: 170px;
}

.kcm-contact__copy {
  padding-bottom: 30px;
}

.kcm-page .kcm-contact h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -.035em;
  margin: 0 0 16px;
  white-space: nowrap;
}

.kcm-contact p {
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 16px;
}

.kcm-button--line {
  background: #fff;
  color: var(--kcm-green);
  min-height: 55px;
}

.kcm-contact__application {
  color: #fff;
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  margin: 12px 0 0 18px;
  text-underline-offset: 4px;
}

.kcm-contact__qr {
  aspect-ratio: 1;
  height: auto;
}

.kcm-mobile-break {
  display: none;
}

@media (max-width: 900px) {
  .kcm-hero__inner {
    gap: 35px;
    grid-template-columns: minmax(280px, .9fr) 1.2fr;
  }

  .kcm-place__card {
    grid-template-areas:
      "heading"
      "copy";
    grid-template-columns: 1fr;
    width: 62%;
  }

  .kcm-place__illustration {
    display: none;
  }

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

  .kcm-overview__item:not(:nth-child(4n + 1)) {
    border-left: 0;
  }

  .kcm-overview__item:nth-child(even) {
    border-left: 1px dashed #999;
  }

  .kcm-overview__item:nth-child(n + 3) {
    border-top: 1px dashed #999;
  }

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

  .kcm-flow__list li:nth-child(2)::after {
    display: none;
  }

  .kcm-guardians__inner {
    grid-template-columns: 150px 1fr;
  }

  .kcm-guardians__inner .kcm-button {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .kcm-contact__inner {
    grid-template-columns: 180px 1fr;
  }

  .kcm-contact__phone {
    height: auto;
    width: 180px;
  }

  .kcm-contact__qr {
    display: none;
  }
}

@media (max-width: 640px) {
  .kcm-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .kcm-mobile-break {
    display: initial;
  }

  .kcm-hero {
    padding: 38px 0 52px;
  }

  .kcm-hero__inner {
    display: flex;
    flex-direction: column;
  }

  .kcm-hero__copy {
    width: 100%;
  }

  .kcm-hero__character {
    height: 125px;
  }

  .kcm-hero__copy .kcm-media-placeholder {
    min-height: 125px;
  }

  .kcm-page .kcm-hero h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
    white-space: normal;
  }

  .kcm-hero__date {
    margin-top: 20px;
  }

  .kcm-hero__visual {
    aspect-ratio: 1.25;
    width: 100%;
  }

  .kcm-page .kcm-concept h2 {
    font-size: 1.55rem;
    white-space: normal;
  }

  .kcm-page .kcm-challenge h2,
  .kcm-page .kcm-guardians h2,
  .kcm-page .kcm-contact h2 {
    white-space: normal;
  }

  .kcm-concept__lead {
    font-size: .9rem;
  }

  .kcm-role-grid {
    gap: 18px;
    grid-template-columns: 1fr;
    margin-top: 35px;
  }

  .kcm-role__image {
    height: 145px;
  }

  .kcm-challenge__title {
    align-items: center;
  }

  .kcm-challenge__image {
    height: 100px;
    max-width: 120px;
    transform: translateY(18px);
  }

  .kcm-challenge__decor {
    flex-basis: 219px;
    height: 100px;
    width: 219px;
  }

  .kcm-challenge__bunting {
    height: 58px;
    width: 95px;
  }

  .kcm-challenge__title .kcm-media-placeholder {
    min-height: 95px;
    padding: 8px;
  }

  .kcm-challenge__title .kcm-media-placeholder span {
    font-size: .62rem;
  }

  .kcm-challenge__title .kcm-media-placeholder small {
    display: none;
  }

  .kcm-story-card {
    line-height: 1.75;
    padding: 22px 19px;
  }

  .kcm-place__visual {
    aspect-ratio: 1.2;
  }

  .kcm-place__bridge {
    object-position: 18% center;
  }

  .kcm-place__card {
    border: 1px solid #e5ddd8;
    border-radius: 15px;
    bottom: auto;
    margin: -45px 12px 0;
    padding: 24px 20px;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: auto;
  }

  .kcm-page .kcm-place h2 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .kcm-place__heading-line {
    white-space: normal;
  }

  .kcm-place__card p {
    font-size: .84rem;
  }

  .kcm-overview {
    padding: 35px 0 30px;
  }

  .kcm-page .kcm-overview h2 {
    background: transparent;
    left: auto;
    margin: 0 0 28px;
    padding: 0;
    position: static;
    top: auto;
  }

  .kcm-overview__grid {
    border-radius: 22px;
    display: block;
    padding: 12px 18px;
  }

  .kcm-overview__item,
  .kcm-overview__item:not(:nth-child(4n + 1)),
  .kcm-overview__item:nth-child(even),
  .kcm-overview__item:nth-child(n + 3) {
    border-left: 0;
    border-top: 0;
  }

  .kcm-overview__item + .kcm-overview__item {
    border-top: 1px dashed #aaa;
  }

  .kcm-overview__note {
    text-align: left;
  }

  .kcm-flow__list {
    gap: 22px;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .kcm-flow__list li {
    min-height: 125px;
  }

  .kcm-flow__list li:not(:last-child)::after {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #777;
    bottom: -18px;
    left: calc(50% - 12px);
    right: auto;
    top: auto;
  }

  .kcm-guardians__inner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .kcm-guardians__image {
    height: 120px;
    width: 180px;
  }

  .kcm-button--outline {
    min-width: 0;
    width: 100%;
  }

  .kcm-contact {
    padding: 30px 0 55px;
  }

  .kcm-contact__inner {
    border-radius: 0;
    display: flex;
    flex-direction: column-reverse;
    padding: 28px 22px 0;
  }

  .kcm-contact__copy {
    padding-bottom: 0;
  }

  .kcm-contact__phone {
    height: 220px;
    width: min(260px, 84%);
  }

  .kcm-contact__inner > .kcm-media-placeholder {
    min-height: 160px;
  }

  .kcm-button--line {
    width: 100%;
  }

  .kcm-contact__application {
    display: block;
    margin-left: 0;
    text-align: center;
  }
}
