:root {
  --text: #242424;
  --white: #ffffff;
  --orange: #fb8160;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--white);
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  width: 100%;
  height: 112px;
  padding: 20px 52px 16px;
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 230px;
  height: 72px;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 230px;
  height: auto;
  transform: translateY(15px);
}

.global-nav {
  position: absolute;
  left: 468px;
  top: 16px;
  display: flex;
  align-items: flex-start;
  width: 800px;
  height: 78px;
}

.nav-item {
  position: relative;
  display: grid;
  grid-template-rows: 38px 17px 13px;
  justify-items: center;
  align-items: center;
  width: 96px;
  height: 78px;
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  text-align: center;
}

.nav-item + .nav-item {
  margin-left: 24px;
}

.nav-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 51px;
  max-height: 41px;
}

.nav-jp {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #2f2f2f;
  white-space: nowrap;
}

.nav-en {
  display: block;
  margin-top: 2px;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  color: #2f2f2f;
  white-space: nowrap;
}

.menu-button,
.sp-menu {
  display: none;
}

.phase1-stage {
  width: 100%;
  background: #fff;
}

.top-hero-rebuild {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: min(calc(21.4vw - 20px), 309px);
  overflow: hidden;
  background: #ffffff;
  pointer-events: none;
}

.phase1-stage.has-cms-hero-photo .top-hero-rebuild {
  display: block;
}

.top-hero-rebuild-svg {
  display: block;
  width: 100%;
  height: auto;
}

.top-hero-rebuild-svg-sp {
  display: none;
}

@media (max-width: 1200px) {
  .top-hero-rebuild {
    height: calc((100vw * 720 / 1167) - 20px);
  }

  .top-hero-rebuild-svg-pc {
    display: none;
  }

  .top-hero-rebuild-svg-sp {
    display: block;
  }
}


.top-hero-main,
.top-hero-main img {
  display: block;
  width: 100%;
}

.top-hero-main {
  background: #ffffff;
}

.top-hero-main img {
  height: auto;
}

.top-hero-main img:not([src]) {
  aspect-ratio: 1280 / 380;
}

@media (max-width: 767px) {
  .top-hero-main img:not([src]) {
    aspect-ratio: 1080 / 900;
  }
}

.phase1-stage > picture,
.phase1-stage > picture > img {
  display: block;
  width: 100%;
}

.phase1-stage > picture {
  height: min(31.25vw, 480px);
  overflow: hidden;
}

.phase1-stage > picture > img {
  height: auto;
}

.phase1-stage.has-cms-hero-photo > picture {
  -webkit-clip-path: inset(min(21.4vw, 329px) 0 0 0);
  clip-path: inset(min(21.4vw, 329px) 0 0 0);
}

@media (max-width: 1200px) {
  .phase1-stage.has-cms-hero-photo > picture {
    -webkit-clip-path: inset(calc(100vw * 720 / 1167) 0 0 0);
    clip-path: inset(calc(100vw * 720 / 1167) 0 0 0);
  }
}

.top-hero-photo-layer {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: none;
  width: 74%;
  height: min(21.7vw, 334px);
  overflow: hidden;
  pointer-events: none;
  clip-path: polygon(
    8% 73%, 11% 61%, 16% 48%, 23% 36%, 32% 25%,
    43% 16%, 56% 9%, 70% 4%, 83% 1%, 100% 0,
    100% 62%, 92% 66%, 82% 70%, 70% 74%, 56% 78%,
    42% 82%, 29% 86%, 19% 86%, 11% 82%
  );
}

.phase1-stage.has-cms-hero-photo::before,
.phase1-stage.has-cms-hero-photo::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
  border-top: 2px solid rgba(238, 98, 134, 0.48);
  border-radius: 50%;
  box-shadow:
    0 6px 0 rgba(255, 173, 81, 0.38),
    0 12px 0 rgba(249, 221, 91, 0.34),
    0 18px 0 rgba(99, 195, 139, 0.31),
    0 24px 0 rgba(83, 171, 232, 0.29),
    0 30px 0 rgba(166, 133, 224, 0.26);
}

.phase1-stage.has-cms-hero-photo::before {
  top: -64px;
  left: 31.5%;
  width: 73%;
  height: 218px;
  transform: rotate(-5deg);
}

.phase1-stage.has-cms-hero-photo::after {
  top: 283px;
  right: -1.5%;
  width: 52%;
  height: 120px;
  transform: rotate(-6deg);
}

.phase1-stage.has-cms-hero-photo .top-hero-photo-layer {
  display: block;
}

.top-hero-photo-layer img {
  position: absolute;
  inset: -8% 0 0 0;
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center 43%;
}

.top-hero-photo-layer::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 35%;
  content: "";
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.97) 26%, rgba(255, 255, 255, 0.82) 52%, rgba(255, 255, 255, 0) 100%);
}

.top-hero-photo-layer::after {
  position: absolute;
  z-index: 2;
  right: -2%;
  bottom: -30%;
  width: 112%;
  height: 44%;
  content: "";
  background: #fff;
  border-radius: 64% 0 0 0 / 100% 0 0 0;
  transform: rotate(-5deg);
}

.top-hero-rainbow {
  display: none;
}

.top-hero-rainbow-top {
  top: -42px;
  left: -18%;
  width: 116%;
  height: 150px;
  transform: rotate(-7deg);
}

.top-hero-rainbow-bottom {
  right: -8%;
  bottom: -72px;
  width: 88%;
  height: 112px;
  transform: rotate(-6deg);
}


@media (max-width: 1200px) {
  .phase1-stage.has-cms-hero-photo::before {
    top: -34px;
    left: 30%;
    width: 82%;
    height: 156px;
    transform: rotate(-5deg);
  }

  .phase1-stage.has-cms-hero-photo::after {
    top: 34vw;
    right: -7%;
    width: 64%;
    height: 88px;
    transform: rotate(-6deg);
  }
}

@media (max-width: 1200px) {
  .top-hero-photo-layer {
    left: auto;
    right: 0;
    width: 66%;
    height: 44vw;
    max-height: 460px;
    clip-path: ellipse(72% 58% at 64% 20%);
  }

  .top-hero-photo-layer img {
    object-position: center 38%;
  }

  .top-hero-rainbow-top {
    top: -34px;
    left: -26%;
    width: 124%;
    height: 126px;
  }

  .top-hero-rainbow-bottom {
    right: -10%;
    bottom: -48px;
    width: 96%;
    height: 92px;
  }
}

@media (max-width: 520px) {
  .phase1-stage.has-cms-hero-photo::before {
    top: -18px;
    left: 31%;
    width: 86%;
    height: 92px;
    border-top-width: 1.5px;
    box-shadow:
      0 4px 0 rgba(255, 173, 81, 0.38),
      0 8px 0 rgba(249, 221, 91, 0.34),
      0 12px 0 rgba(99, 195, 139, 0.31),
      0 16px 0 rgba(83, 171, 232, 0.29),
      0 20px 0 rgba(166, 133, 224, 0.26);
  }

  .phase1-stage.has-cms-hero-photo::after {
    top: 60vw;
    right: -10%;
    width: 70%;
    height: 58px;
    border-top-width: 1.5px;
    box-shadow:
      0 4px 0 rgba(255, 173, 81, 0.38),
      0 8px 0 rgba(249, 221, 91, 0.34),
      0 12px 0 rgba(99, 195, 139, 0.31),
      0 16px 0 rgba(83, 171, 232, 0.29),
      0 20px 0 rgba(166, 133, 224, 0.26);
  }
}


/* Hero CMS photo layer final overrides */
@media (max-width: 1200px) {
  .top-hero-photo-layer {
    width: 74%;
    height: 44vw;
    max-height: 460px;
    clip-path: polygon(
      7% 70%, 10% 57%, 17% 44%, 26% 32%, 37% 22%,
      50% 14%, 64% 8%, 79% 3%, 100% 0,
      100% 64%, 91% 68%, 79% 72%, 65% 76%, 50% 80%,
      35% 85%, 22% 86%, 12% 82%
    );
  }

  .top-hero-photo-layer img {
    inset: -8% 0 0 0;
    height: 108%;
    object-position: center 39%;
  }
}

@media (max-width: 520px) {
  .top-hero-photo-layer {
    width: 74%;
    height: 52vw;
    clip-path: polygon(
      6% 69%, 10% 56%, 18% 42%, 29% 30%, 42% 20%,
      57% 11%, 73% 4%, 100% 0,
      100% 65%, 91% 69%, 78% 73%, 63% 77%, 47% 81%,
      31% 85%, 17% 84%, 9% 80%
    );
  }

  .top-hero-photo-layer::before {
    width: 38%;
  }

  .top-hero-photo-layer::after {
    right: -12%;
    bottom: -42%;
    width: 126%;
    height: 54%;
  }
}
@media (max-width: 520px) {
  .top-hero-photo-layer {
    width: 66%;
    height: 52vw;
    clip-path: ellipse(73% 60% at 66% 18%);
  }

  .top-hero-photo-layer::before {
    width: 38%;
  }

  .top-hero-photo-layer::after {
    right: -12%;
    bottom: -42%;
    width: 126%;
    height: 54%;
  }

  .top-hero-rainbow {
    border-top-width: 2px;
    box-shadow:
      0 5px 0 rgba(255, 172, 86, 0.58),
      0 10px 0 rgba(248, 221, 93, 0.48),
      0 15px 0 rgba(111, 201, 143, 0.46),
      0 20px 0 rgba(91, 177, 236, 0.42),
      0 25px 0 rgba(166, 134, 226, 0.38);
  }

  .top-hero-rainbow-top {
    top: -22px;
    left: -32%;
    width: 134%;
    height: 88px;
  }

  .top-hero-rainbow-bottom {
    bottom: -36px;
    height: 70px;
  }
}

@media (max-width: 1200px) {
  .phase1-stage > picture {
    height: auto;
    overflow: visible;
  }
  .site-header {
    height: 147px;
    padding: 26px 40px 18px;
  }

  .brand {
    width: 285px;
    height: 94px;
    max-width: calc(100vw - 160px);
  }

  .brand img {
    width: 285px;
    transform: translateY(14px);
  }

  .global-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 70px;
    height: 70px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: var(--orange);
  }

  .sp-menu {
    position: fixed;
    inset: 146px 38px auto;
    z-index: 19;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 40px rgba(238, 111, 130, 0.16);
  }

  .sp-menu[hidden] {
    display: none;
  }

  .sp-menu a {
    padding: 18px 24px;
    border-bottom: 1px solid #f7d9df;
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
  }

  .sp-menu a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    height: 100px;
    padding: 18px 24px 12px;
  }

  .brand {
    width: 220px;
    max-width: calc(100vw - 112px);
  }

  .brand img {
    width: 220px;
    transform: translateY(15px);
  }

  .menu-button {
    width: 52px;
    height: 52px;
    gap: 7px;
  }

  .menu-button span {
    width: 34px;
    height: 3px;
  }

  .sp-menu {
    inset: 100px 20px auto;
  }
}






.top-content {
  width: min(86.6vw, 1308px);
  margin: 0 auto 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.panel,
.about-panel,
.cta-panel {
  border: 1px solid #eeeeee;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.055);
}

.panel {
  padding: 37px 36px 33px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  color: #ee6f82;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: #242424;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.section-heading.with-action {
  justify-content: space-between;
  align-items: center;
}

.section-heading.with-action > div {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.philosophy-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 27px;
}

.philosophy-items article {
  display: grid;
  justify-items: center;
  min-height: 132px;
  padding: 0 24px;
  border-right: 1px solid #e9e9e9;
  text-align: center;
}

.philosophy-items article:last-child {
  border-right: 0;
}

.philosophy-items img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 15px;
}

.philosophy-items h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.52;
}

.philosophy-items p {
  margin: 0;
  color: #444444;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
}

.outline-button,
.small-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ee6f82;
  border-radius: 999px;
  color: #ee6f82;
  background: #ffffff;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.outline-button::after,
.small-button::after,
.cta-button::after {
  content: "\203A";
  margin-left: 12px;
  font-size: 18px;
  line-height: 0.7;
}

.outline-button {
  min-width: 160px;
  height: 38px;
  padding: 0 22px;
  font-size: 13px;
}

.philosophy-panel .outline-button,
.gallery-panel .outline-button {
  display: flex;
  width: max-content;
  margin: 0 auto;
}

.small-button {
  min-width: 112px;
  height: 34px;
  padding: 0 18px;
  font-size: 12px;
}

.news-list {
  display: grid;
  gap: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 86px 70px minmax(0, 1fr) 16px;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid #eeeeee;
  color: #242424;
}

.news-item:last-child {
  border-bottom: 0;
}

.news-item time {
  color: #ee6f82;
  font-size: 13px;
  font-weight: 600;
}

.news-item:nth-child(2) time {
  color: #2ab880;
}

.news-item:nth-child(3) time {
  color: #2779d7;
}

.news-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 22px;
  border-radius: 3px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
}

.news-tag.pink { background: #ee6f82; }
.news-tag.green { background: #2ab880; }
.news-tag.blue { background: #2779d7; }

.news-item strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-item.has-link::after {
  content: "\203A";
  color: #ee6f82;
  font-size: 22px;
  line-height: 1;
}

.about-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 275px;
  margin-top: 28px;
  overflow: hidden;
}

.about-copy {
  position: relative;
  z-index: 2;
  padding: 35px 34px 32px;
}

.about-copy p {
  margin: 0 0 13px;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}

.about-copy .outline-button {
  margin-top: 12px;
}

.about-photo {
  position: relative;
  min-height: 275px;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 42%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.82) 42%, rgba(255,255,255,0) 100%);
}

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

.gallery-sponsors {
  margin-top: 28px;
}

.gallery-panel {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  column-gap: 20px;
  padding: 30px 28px;
}

.gallery-panel .section-heading {
  display: block;
  grid-column: 1;
  grid-row: 1;
}

.gallery-panel .section-heading p {
  margin-top: 14px;
}

.gallery-panel .outline-button {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  min-width: 146px;
  margin: 0;
}

.gallery-thumbs {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gallery-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.sponsors-panel {
  padding: 32px 34px;
}

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

.sponsor-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  color: #30506f;
  background: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr) auto 315px;
  align-items: center;
  gap: 24px;
  min-height: 125px;
  margin-top: 28px;
  margin-bottom: 34px;
  padding: 24px 34px 22px;
  overflow: hidden;
}

.cta-ball {
  display: block;
  width: 136px;
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}

.cta-copy h2 {
  margin: 0 0 14px;
  color: #ee6f82;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
}

.cta-copy p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.cta-button {
  position: relative;
  z-index: 2;
  min-width: 168px;
  height: 38px;
  padding: 0 20px;
  color: #ffffff;
  background: #ee6f82;
  font-size: 13px;
}

.cta-art {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 325px;
  height: 118px;
  object-fit: cover;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 88px;
  align-items: center;
  width: min(86.6vw, 1308px);
  margin: 24px auto 0;
  padding: 0 0 18px;
}

.footer-logo {
  display: block;
  width: 132px;
  height: 52px;
  overflow: visible;
}

.footer-logo img {
  display: block;
  width: 132px;
  height: auto;
  transform: translateY(-36px);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 21px;
  color: #242424;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.footer-nav a + a::before {
  content: "|";
  margin-right: 21px;
  color: #b7b7b7;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.footer-social .instagram {
  position: relative;
  background: #ee6f82;
}

.footer-social .instagram::before {
  position: absolute;
  inset: -6px;
  content: "";
}

.footer-social .instagram-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social .instagram-icon-dot {
  fill: currentColor;
  stroke: none;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: #242424;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 1200px) {
  .phase1-stage > picture {
    height: auto;
    overflow: visible;
  }
  .top-content {
    width: calc(100vw - 80px);
    margin-top: 0;
  }

  .content-grid,
  .about-panel,
  .gallery-panel,
  .cta-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 31px 28px 30px;
  }

  .philosophy-news,
  .gallery-sponsors {
    gap: 24px;
  }

  .section-heading,
  .section-heading.with-action > div {
    gap: 16px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .philosophy-items {
    gap: 0;
  }

  .philosophy-items article {
    padding: 0 14px;
  }

  .news-item {
    grid-template-columns: 86px 70px minmax(0, 1fr) 16px;
  }

  .about-panel {
    min-height: 0;
  }

  .about-copy {
    padding: 31px 28px 24px;
  }

  .about-photo {
    min-height: 255px;
  }

  .gallery-panel {
    gap: 20px;
  }

  .gallery-panel .section-heading,
  .gallery-panel .outline-button,
  .gallery-thumbs {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-panel .outline-button {
    justify-self: start;
  }

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

  .cta-panel {
    width: calc(100vw - 80px);
    margin-left: auto;
    margin-right: auto;
    padding: 26px 28px 94px;
    gap: 16px;
  }

  .cta-ball {
    width: 108px;
    height: auto;
  }

  .cta-copy h2 {
    font-size: 23px;
  }

  .cta-art {
    width: 270px;
    height: 94px;
  }

  .site-footer {
    width: calc(100vw - 80px);
    justify-items: center;
    gap: 16px;
    padding-bottom: 22px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 12px 17px;
  }

  .footer-nav a + a::before {
    margin-right: 17px;
  }
}

@media (max-width: 520px) {
  .top-content,
  .cta-panel,
  .site-footer {
    width: calc(100vw - 44px);
  }

  .panel {
    padding: 26px 20px 25px;
  }

  .home-page .gallery-sponsors > .panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-page .gallery-panel,
  .home-page .sponsors-panel,
  .home-page .gallery-thumbs,
  .home-page .sponsor-grid,
  .home-page .sponsor-grid a {
    box-sizing: border-box;
    min-width: 0;
  }

  .home-page .sponsor-grid a {
    overflow-wrap: anywhere;
  }

  .section-heading,
  .section-heading.with-action,
  .section-heading.with-action > div {
    align-items: flex-start;
  }

  .section-heading.with-action {
    gap: 14px;
  }

  .section-heading h2 {
    font-size: 23px;
  }

  .section-heading p {
    font-size: 13px;
  }

  .philosophy-items {
    grid-template-columns: 1fr;
  }

  .philosophy-items article {
    min-height: 0;
    padding: 22px 8px;
    border-right: 0;
    border-bottom: 1px solid #e9e9e9;
  }

  .philosophy-items article:last-child {
    border-bottom: 0;
  }

  .news-item {
    grid-template-columns: 74px 62px minmax(0, 1fr) 12px;
    min-height: 54px;
  }

  .news-item time,
  .news-item strong {
    font-size: 11px;
  }

  .news-tag {
    width: 52px;
    height: 20px;
    font-size: 9px;
  }

  .about-copy {
    padding: 27px 20px 22px;
  }

  .about-copy p {
    font-size: 13px;
    line-height: 1.85;
  }

  .about-photo {
    min-height: 215px;
  }

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

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

  .cta-panel {
    padding: 24px 20px 92px;
  }

  .cta-copy h2 {
    font-size: 20px;
  }

  .cta-copy p {
    font-size: 13px;
  }

  .footer-logo,
  .footer-logo img {
    width: 120px;
  }

  .footer-logo img {
    transform: translateY(-33px);
  }
}




.subpage-main {
  width: min(86.6vw, 1308px);
  margin: 0 auto;
  padding: 46px 0 0;
}

.concept-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 42px;
  min-height: 320px;
  overflow: hidden;
}

.concept-hero::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 22px;
  width: min(48vw, 620px);
  height: 18px;
  border-top: 3px solid rgba(238, 111, 130, 0.75);
  border-bottom: 3px solid rgba(42, 184, 128, 0.45);
  border-radius: 50%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.concept-hero-copy {
  position: relative;
  z-index: 2;
  padding: 24px 0 30px;
}

.subpage-label {
  margin: 0 0 14px;
  color: #242424;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.concept-hero h1 {
  margin: 0 0 28px;
  color: #ee6f82;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.concept-hero-copy > p:last-child {
  margin: 0;
  color: #242424;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.65;
}

.concept-hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.055);
}

.concept-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 30%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.68) 46%, rgba(255,255,255,0) 100%);
}

.concept-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
}

.concept-message,
.concept-philosophy,
.concept-care,
.concept-photo-section {
  margin-top: 28px;
}

.concept-message p,
.concept-care p {
  margin: 0;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}

.concept-message p + p {
  margin-top: 12px;
}

.concept-message .lead-text {
  color: #ee6f82;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
}

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

.concept-values article {
  display: grid;
  justify-items: center;
  min-height: 224px;
  padding: 2px 28px 0;
  border-right: 1px solid #e9e9e9;
  text-align: center;
}

.concept-values article:last-child {
  border-right: 0;
}

.concept-values img {
  display: block;
  width: auto;
  height: 44px;
  max-width: 51px;
  margin-bottom: 17px;
  object-fit: contain;
}

.concept-values h3 {
  margin: 0 0 14px;
  color: #242424;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.concept-values p {
  margin: 0;
  color: #444444;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.care-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.care-list p {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
}

.care-list p::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 12px;
  flex: 0 0 auto;
  border: 2px solid #ee6f82;
  border-radius: 50%;
}

.concept-photo-section {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 16px;
}

.concept-photo-section img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eeeeee;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.055);
}

.concept-page .cta-panel {
  width: 100%;
}

.concept-page .site-footer {
  margin-top: 24px;
}

@media (max-width: 1200px) {
  .subpage-main {
    width: calc(100vw - 80px);
    padding-top: 34px;
  }

  .concept-hero,
  .concept-values,
  .care-list,
  .concept-photo-section {
    grid-template-columns: 1fr;
  }

  .concept-hero {
    gap: 24px;
    min-height: 0;
  }

  .concept-hero h1 {
    font-size: 42px;
  }

  .concept-hero-copy > p:last-child {
    font-size: 24px;
  }

  .concept-values article {
    min-height: 0;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid #e9e9e9;
  }

  .concept-values article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .subpage-main {
    width: calc(100vw - 44px);
    padding-top: 26px;
  }

  .concept-hero {
    gap: 18px;
  }

  .concept-hero::after {
    width: 82vw;
    bottom: 6px;
  }

  .subpage-label {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .concept-hero h1 {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .concept-hero-copy > p:last-child {
    font-size: 20px;
    line-height: 1.7;
  }

  .concept-hero-photo img {
    aspect-ratio: 1.38 / 1;
  }

  .concept-message .lead-text {
    font-size: 15px;
  }

  .concept-message p,
  .concept-care p,
  .concept-values p {
    font-size: 13px;
  }

  .care-list {
    gap: 10px;
  }

  .care-list p {
    min-height: 58px;
    padding: 13px 15px;
  }
}

/* Phase 3 concept finish adjustments */
.concept-page .subpage-main {
  padding-top: 34px;
}

.concept-hero {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  min-height: 290px;
}

.concept-hero-copy {
  align-self: center;
  padding: 10px 0 16px;
}

.concept-hero h1 {
  margin-bottom: 22px;
}

.concept-hero-copy > p:last-child {
  line-height: 1.55;
}

.concept-hero-photo img {
  aspect-ratio: 1.9 / 1;
  object-position: center;
}

.concept-message .lead-text {
  color: #242424;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
}

.concept-message .text-accent {
  color: #ee6f82;
  font-weight: 600;
}

.care-list {
  counter-reset: care-item;
  gap: 14px;
}

.care-list p {
  position: relative;
  align-items: flex-start;
  min-height: 88px;
  padding: 18px 18px 18px 48px;
  line-height: 1.75;
}

.care-list p::before {
  counter-increment: care-item;
  content: counter(care-item, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 18px;
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  color: #ee6f82;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.concept-photo-section {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.concept-photo-section img {
  aspect-ratio: 1.55 / 1;
  object-position: center;
}

@media (max-width: 1200px) {
  .concept-page .subpage-main {
    padding-top: 30px;
  }

  .concept-hero {
    gap: 20px;
  }

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

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

  .concept-photo-section img {
    aspect-ratio: 1.45 / 1;
  }
}

@media (max-width: 520px) {
  .concept-page .subpage-main {
    padding-top: 22px;
  }

  .concept-hero-copy {
    padding: 0 0 8px;
  }

  .concept-hero h1 {
    margin-bottom: 14px;
  }

  .concept-hero-photo img {
    aspect-ratio: 1.5 / 1;
  }

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

  .care-list p {
    min-height: 0;
    padding: 14px 15px 14px 46px;
  }

  .care-list p::before {
    top: 14px;
  }

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

  .concept-photo-section img {
    aspect-ratio: 1.45 / 1;
  }
}

@media (max-width: 1200px) {
  .concept-hero {
    grid-template-columns: 1fr;
  }
}

/* Phase 3 concept story expansion */
.concept-story,
.concept-mind {
  margin-top: 28px;
}

.concept-story-text p,
.concept-mind-text p {
  margin: 0;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}

.concept-story-text p + p,
.concept-mind-text p + p {
  margin-top: 12px;
}

.concept-name-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.concept-name-grid article {
  padding: 18px 16px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.concept-name-grid p {
  margin: 0;
}

.concept-name-grid .name-word {
  margin-bottom: 8px;
  color: #ee6f82;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.concept-name-grid .name-meaning {
  color: #242424;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.concept-mind {
  background: #fff8f6;
}

.concept-mind-heading {
  margin-bottom: 22px;
}

.concept-mind-heading h2 {
  font-size: 28px;
  line-height: 1.35;
}

.concept-mind-heading p {
  color: #ee6f82;
  font-size: 13px;
}

@media (max-width: 520px) {
  .concept-story-text p,
  .concept-mind-text p {
    font-size: 13px;
  }

  .concept-name-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .concept-name-grid article {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 14px;
    text-align: left;
    white-space: normal;
  }

  .concept-name-grid .name-word {
    min-width: 48px;
    margin-bottom: 0;
  }
  .concept-mind-heading {
    display: block;
    margin-bottom: 18px;
  }

  .concept-mind-heading h2 {
    margin-bottom: 8px;
    font-size: 22px;
  }
}
/* Top page Phase 2 finishing adjustments */
.home-page .cta-panel {
  background: #fff8f6;
}

@media (min-width: 1201px) {
  .home-page .brand {
    width: 200px;
  }

  .home-page .brand img {
    width: 200px;
  }

  .home-page .global-nav {
    left: 468px;
  }

  .home-page .nav-item img {
    max-width: 46px;
    max-height: 37px;
  }

  .home-page .philosophy-items article {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-page .philosophy-items h3 {
    white-space: nowrap;
  }

  .home-page .site-footer {
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .home-page .footer-nav {
    grid-column: 1;
  }

  .home-page .footer-social {
    grid-column: 2;
  }
}

/* Shared Header/Footer alignment */
.footer-logo {
  display: none;
}

.footer-nav {
  grid-column: 1;
  grid-row: 1;
  justify-content: center;
}

.footer-social {
  grid-column: 2;
  grid-row: 1;
  justify-content: flex-end;
  padding-right: 8px;
}

.copyright {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 2px;
}

@media (min-width: 1201px) {
  .brand {
    width: 200px;
  }

  .brand img {
    width: 200px;
  }

  .global-nav {
    left: 468px;
  }

  .nav-item img {
    max-width: 46px;
    max-height: 37px;
  }
}

@media (max-width: 1200px) {
  .site-footer {
    row-gap: 18px;
    padding: 24px 12px 30px;
  }

  .footer-nav {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    white-space: normal;
  }

  .footer-social {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
    padding-right: 0;
  }

  .copyright {
    grid-row: 3;
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 22px 8px 30px;
    row-gap: 17px;
  }
}

/* Shared Header/Footer final spacing */
.cta-panel {
  margin-bottom: 46px;
}

.site-footer {
  grid-template-columns: minmax(0, 1fr) 96px;
  align-items: start;
  row-gap: 16px;
  margin-top: 34px;
  padding: 20px 18px 30px;
}

.footer-nav {
  gap: 26px;
}

.footer-nav a + a::before {
  margin-right: 26px;
}

@media (max-width: 1200px) {
  .site-footer {
    grid-template-columns: 1fr;
    row-gap: 18px;
    padding: 24px 12px 30px;
  }

  .footer-nav {
    gap: 12px 20px;
  }

  .footer-nav a + a::before {
    margin-right: 20px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 22px 8px 30px;
    row-gap: 17px;
  }
}

/* Shared PC Header logo vertical fine tune */
@media (min-width: 1201px) {
  .brand img {
    transform: translateY(9px);
  }
}

/* Final shared Header logo sizing */
@media (min-width: 1201px) {
  .brand img {
    transform: translateY(3px);
  }
}

@media (max-width: 520px) {
  .site-header {
    height: 78px;
    padding: 10px 22px 8px;
  }

  .brand {
    width: 150px;
    height: 58px;
    max-width: calc(100vw - 98px);
  }

  .brand img {
    width: 150px;
    transform: translateY(8px);
  }

  .menu-button {
    width: 52px;
    height: 52px;
  }

  .sp-menu {
    inset: 78px 20px auto;
  }
}

/* Final PC Header logo micro adjustment */
@media (min-width: 1201px) {
  .brand {
    width: 185px;
  }

  .brand img {
    width: 185px;
    transform: translateY(-5px);
  }
}

/* Final PC Header logo page-consistent override */
@media (min-width: 1201px) {
  .home-page .brand,
  .brand {
    width: 185px;
  }

  .home-page .brand img,
  .brand img {
    width: 185px;
    transform: translateY(-5px);
  }
}

/* Coach page */
.phase1-stage {
  position: relative;
}

.stage-card-link {
  position: absolute;
  z-index: 3;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}


.stage-card-link-coach {
  left: 33.2vw;
  top: 302px;
  width: min(28vw, 430px);
  height: 118px;
}

.coach-main {
  padding-top: 34px;
}

.coach-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 32px;
  min-height: 292px;
  overflow: hidden;
}

.coach-hero::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 20px;
  width: min(48vw, 620px);
  height: 18px;
  border-top: 3px solid rgba(42, 184, 128, 0.5);
  border-bottom: 3px solid rgba(238, 111, 130, 0.68);
  border-radius: 50%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.coach-hero-copy {
  position: relative;
  z-index: 2;
  padding: 12px 0 18px;
}

.coach-hero h1 {
  margin: 0 0 22px;
  color: #ee6f82;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.coach-hero-copy > p:last-child {
  margin: 0;
  color: #242424;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.6;
}

.coach-hero-photo,
.coach-profile-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.055);
}

.coach-hero-photo::before,
.coach-profile-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 28%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.66) 46%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.coach-hero-photo img,
.coach-profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.88 / 1;
  object-fit: cover;
  object-position: center;
}

.coach-intro,
.coach-profile,
.coach-guidance {
  margin-top: 28px;
}

.coach-intro p,
.coach-profile-copy p,
.coach-info-list,
.coach-guidance-list p {
  margin: 0;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}

.coach-intro p + p,
.coach-profile-copy p + p {
  margin-top: 10px;
}

.coach-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 24px;
  align-items: center;
}

.coach-profile-photo img {
  aspect-ratio: 1.28 / 1;
}

.coach-eyebrow {
  color: #22b874;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.coach-profile-copy h2 {
  margin: 6px 0 8px;
  color: #242424;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
}

.coach-role {
  color: #ee6f82;
  font-weight: 600;
}

.coach-info-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.coach-info-list div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
}

.coach-info-list dt {
  color: #22b874;
  font-weight: 600;
}

.coach-info-list dd {
  margin: 0;
}

.coach-guidance-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.coach-guidance-list article {
  display: grid;
  justify-items: center;
  min-height: 190px;
  padding: 4px 28px 0;
  border-right: 1px solid #e9e9e9;
  text-align: center;
}

.coach-guidance-list article:last-child {
  border-right: 0;
}

.coach-guidance-list img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 51px;
  margin-bottom: 16px;
  object-fit: contain;
}

.coach-guidance-list h3 {
  margin: 0 0 12px;
  color: #242424;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

@media (max-width: 1200px) {
  .stage-card-link-coach {
    left: 25px;
    top: 214px;
    width: calc(100vw - 50px);
    height: 54px;
  }

  .coach-main {
    padding-top: 30px;
  }

  .coach-hero,
  .coach-profile,
  .coach-guidance-list {
    grid-template-columns: 1fr;
  }

  .coach-hero {
    gap: 20px;
    min-height: 0;
  }

  .coach-hero h1 {
    font-size: 42px;
  }

  .coach-hero-copy > p:last-child {
    font-size: 24px;
  }

  .coach-profile {
    gap: 18px;
  }

  .coach-profile-photo img {
    aspect-ratio: 1.42 / 1;
  }

  .coach-guidance-list article {
    min-height: 0;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid #e9e9e9;
  }

  .coach-guidance-list article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .stage-card-link-coach {
    left: 24px;
    top: 214px;
    width: calc(100vw - 48px);
    height: 58px;
  }

  .coach-main {
    padding-top: 22px;
  }

  .coach-hero {
    gap: 18px;
  }

  .coach-hero::after {
    width: 82vw;
    bottom: 6px;
  }

  .coach-hero-copy {
    padding: 0 0 8px;
  }

  .coach-hero h1 {
    margin-bottom: 14px;
    font-size: 34px;
  }

  .coach-hero-copy > p:last-child {
    font-size: 20px;
    line-height: 1.7;
  }

  .coach-hero-photo img,
  .coach-profile-photo img {
    aspect-ratio: 1.45 / 1;
  }

  .coach-intro p,
  .coach-profile-copy p,
  .coach-info-list,
  .coach-guidance-list p {
    font-size: 13px;
  }

  .coach-profile-copy h2 {
    font-size: 24px;
  }

  .coach-info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Coach official staff profiles */
.coach-staff-section {
  margin-top: 28px;
  padding: 34px 36px 36px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.055);
}

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

.coach-staff-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
  padding: 24px 26px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
}

.coach-staff-role {
  display: flex;
  align-items: flex-start;
  min-height: 100%;
  padding-top: 4px;
}

.coach-staff-role span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(34, 184, 116, 0.38);
  border-radius: 999px;
  color: #22b874;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.coach-staff-body h3 {
  margin: 0;
  color: #242424;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.3;
}

.coach-kana {
  margin: 5px 0 18px;
  color: #777777;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.coach-detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.coach-detail-list div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid #eeeeee;
}

.coach-detail-list dt {
  color: #ee6f82;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.coach-detail-list dd {
  margin: 0;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.coach-detail-list dd span {
  display: block;
}

.coach-assistant-note {
  margin: 18px 0 0;
  padding: 14px 18px;
  border: 1px solid rgba(238, 111, 130, 0.24);
  border-radius: 8px;
  background: rgba(238, 111, 130, 0.055);
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .coach-staff-section {
    padding: 28px 24px 30px;
  }

  .coach-staff-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 22px;
  }

  .coach-staff-role {
    min-height: 0;
    padding-top: 0;
  }
}

@media (max-width: 520px) {
  .coach-staff-section {
    margin-top: 24px;
    padding: 24px 20px 24px;
  }

  .coach-staff-card {
    gap: 12px;
    padding: 20px 18px;
  }

  .coach-staff-role span {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .coach-staff-body h3 {
    font-size: 25px;
  }

  .coach-kana {
    margin-bottom: 15px;
    font-size: 12px;
  }

  .coach-detail-list div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding-top: 9px;
  }

  .coach-detail-list dt,
  .coach-detail-list dd,
  .coach-assistant-note {
    font-size: 13px;
  }
}

/* Coach staff PC finishing adjustment */
@media (min-width: 1201px) {
  .coach-staff-section {
    width: min(100%, 920px);
    margin: 28px auto 0;
    padding: 34px 34px 36px;
  }

  .coach-staff-list {
    gap: 14px;
  }

  .coach-staff-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 28px 26px;
  }

  .coach-staff-role {
    min-height: 0;
    padding-top: 0;
  }

  .coach-staff-role span {
    min-height: 32px;
    padding: 6px 13px;
    font-size: 13px;
  }

  .coach-staff-body h3 {
    font-size: 30px;
  }

  .coach-kana {
    margin-bottom: 16px;
  }

  .coach-detail-list div {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}

/* Coach staff placeholder photo fallback */
.coach-staff-photo {
  display: block;
  width: min(72%, 220px);
  margin: 0 auto 14px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #f7f7f7;
}

.coach-staff-photo img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1201px) {
  .coach-staff-card {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 18px 24px;
    align-items: start;
  }

  .coach-staff-photo {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 230px;
    margin: 0;
  }

  .coach-staff-role {
    grid-column: 2;
    grid-row: 1;
  }

  .coach-staff-body {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 520px) {
  .coach-staff-photo {
    width: min(74%, 210px);
    margin-bottom: 14px;
  }
}

/* Match page */
.stage-card-link-match {
  left: 64.1vw;
  top: 302px;
  width: min(29.7vw, 405px);
  height: 126px;
}
.match-main {
  padding-top: 34px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #777777;
  font-size: 12px;
  font-weight: 500;
}

.breadcrumb a::after {
  content: ">";
  margin-left: 10px;
  color: #b7b7b7;
}

.match-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 32px;
  min-height: 292px;
  overflow: hidden;
}

.match-hero::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 20px;
  width: min(48vw, 620px);
  height: 18px;
  border-top: 3px solid rgba(255, 176, 32, 0.62);
  border-bottom: 3px solid rgba(238, 111, 130, 0.68);
  border-radius: 50%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.match-hero-copy {
  position: relative;
  z-index: 2;
  padding: 12px 0 18px;
}

.match-hero h1 {
  margin: 0 0 22px;
  color: #ee6f82;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.match-hero-copy > p:last-child {
  margin: 0;
  color: #242424;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.6;
}

.match-hero-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.055);
}

.match-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 28%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.66) 46%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.match-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.88 / 1;
  object-fit: cover;
  object-position: center;
}

.match-latest,
.match-results {
  margin-top: 28px;
}

.latest-empty {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 18px;
  padding: 26px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
}

.latest-score-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px minmax(0, 1fr);
  align-items: center;
  min-height: 178px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
}

.team-side,
.score-center {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 178px;
  padding: 18px;
  text-align: center;
}

.team-side + .score-center,
.score-center + .team-side {
  border-left: 1px solid #eeeeee;
}

.team-logo {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 10px;
}

.lino-logo {
  width: 90px;
}

.team-side strong {
  color: #242424;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.score-placeholder {
  color: #ee6f82;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 25px;
  margin-top: 12px;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.status-badge.win { background: #08b86f; }
.status-badge.lose { background: #ee6f82; }
.status-badge.draw { background: #9a9a9a; }

.empty-copy {
  display: grid;
  align-content: center;
  padding: 12px 0;
}

.match-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #ffe8ef;
  color: #ee6f82;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.empty-copy p,
.results-empty p {
  margin: 0;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.empty-copy p + p {
  margin-top: 8px;
}

.year-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.year-filter button {
  min-width: 88px;
  height: 30px;
  padding: 0 14px;
  border: 1px solid #eeeeee;
  border-radius: 999px;
  background: #ffffff;
  color: #242424;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
}

.year-filter button.active {
  border-color: #ee6f82;
  background: #ee6f82;
  color: #ffffff;
}

.results-empty {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
}

.results-empty img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
}

.results-empty span {
  display: block;
  margin-top: 4px;
  color: #777777;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.match-page .cta-panel {
  width: 100%;
}

@media (max-width: 1200px) {
  .stage-card-link-match {
    display: none;
  }

  .match-main {
    padding-top: 30px;
  }

  .match-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .match-hero h1 {
    font-size: 42px;
  }

  .match-hero-copy > p:last-child {
    font-size: 24px;
  }

  .latest-empty {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .latest-score-shell {
    grid-template-columns: 1fr;
  }

  .team-side,
  .score-center {
    min-height: 0;
    padding: 16px;
  }

  .team-side + .score-center,
  .score-center + .team-side {
    border-left: 0;
    border-top: 1px solid #eeeeee;
  }

  .score-placeholder {
    font-size: 34px;
  }

  .match-page .section-heading.with-action {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .match-main {
    padding-top: 22px;
  }

  .breadcrumb {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .match-hero {
    gap: 18px;
  }

  .match-hero::after {
    width: 82vw;
    bottom: 6px;
  }

  .match-hero-copy {
    padding: 0 0 8px;
  }

  .match-hero h1 {
    margin-bottom: 14px;
    font-size: 34px;
  }

  .match-hero-copy > p:last-child {
    font-size: 20px;
    line-height: 1.7;
  }

  .match-hero-photo img {
    aspect-ratio: 1.45 / 1;
  }

  .match-latest,
  .match-results {
    margin-top: 24px;
  }

  .latest-empty {
    padding: 20px 18px;
  }

  .team-logo,
  .results-empty img {
    width: 48px;
    height: 48px;
  }

  .lino-logo {
    width: 76px;
  }

  .score-placeholder {
    font-size: 30px;
  }

  .empty-copy p,
  .results-empty p {
    font-size: 13px;
  }

  .year-filter {
    gap: 8px;
  }

  .year-filter button {
    min-width: 78px;
    height: 28px;
    padding: 0 12px;
    font-size: 11px;
  }

  .results-empty {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 16px;
  }
}

/* Match real data display support */
.latest-match-card {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 26px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
}

.latest-match-meta h3 {
  margin: 0 0 8px;
  color: #242424;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.latest-match-meta p {
  margin: 0;
  color: #555555;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.match-score {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  color: #242424;
  line-height: 1;
}

.match-score b {
  color: #ee6f82;
  font-size: 42px;
  font-weight: 700;
}

.match-score em {
  color: #242424;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
}

.set-score-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.set-score-list div {
  min-height: 58px;
  padding: 12px 10px;
  text-align: center;
}

.set-score-list div + div {
  border-left: 1px solid #eeeeee;
}

.set-score-list strong {
  display: block;
  color: #242424;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.set-score-list span {
  display: block;
  margin-top: 4px;
  color: #666666;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
}

.match-comment {
  padding: 14px 16px;
  border: 1px solid #f7d9df;
  border-radius: 8px;
  background: #fff8f6;
}

.match-comment p {
  margin: 0;
  color: #242424;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.match-results-list {
  display: grid;
  gap: 0;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
}

.match-result-row {
  display: grid;
  grid-template-columns: 112px minmax(180px, 1.25fr) minmax(190px, 1fr) 118px 78px;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 14px 18px;
  border-bottom: 1px solid #eeeeee;
}

.match-result-row:last-child {
  border-bottom: 0;
}

.match-result-row time,
.result-title span,
.result-score span {
  color: #666666;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.result-title strong,
.result-score strong {
  display: block;
  color: #242424;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.result-opponent {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.result-opponent img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  object-position: center;
}

.result-opponent span {
  min-width: 0;
  color: #242424;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
  .latest-match-card {
    padding: 24px;
  }

  .match-result-row {
    grid-template-columns: 1fr;
    gap: 9px;
    align-items: start;
    min-height: 0;
    padding: 16px 18px;
  }

  .match-result-row .status-badge {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .latest-match-card {
    padding: 20px 18px;
  }

  .latest-match-meta h3 {
    font-size: 17px;
  }

  .match-score b {
    font-size: 34px;
  }

  .match-score em {
    font-size: 24px;
  }

  .set-score-list {
    grid-template-columns: 1fr;
  }

  .set-score-list div + div {
    border-left: 0;
    border-top: 1px solid #eeeeee;
  }

  .match-result-row time,
  .result-title span,
  .result-score span,
  .result-opponent span,
  .match-comment p {
    font-size: 12px;
  }
}

/* Match SP data display compactness */
@media (max-width: 520px) {
  .match-page .latest-score-shell {
    grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  }

  .match-page .team-side,
  .match-page .score-center {
    padding: 12px 8px;
  }

  .match-page .team-side + .score-center,
  .match-page .score-center + .team-side {
    border-top: 0;
    border-left: 1px solid #eeeeee;
  }

  .match-page .team-side strong {
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .match-page .status-badge {
    min-width: 62px;
    height: 23px;
    padding: 0 10px;
    font-size: 11px;
  }
}

/* Home Awaken Your Spirit brand message */
.home-page .awaken-panel {
  margin: 28px 0 0;
}

.home-page .awaken-panel picture,
.home-page .awaken-panel img {
  display: block;
  width: 100%;
}

.home-page .awaken-panel img {
  height: auto;
}

@media (max-width: 1200px) {
  .home-page .awaken-panel {
    margin-top: 24px;
  }
}

@media (max-width: 340px) {
  .home-page .sponsors-panel .section-heading.with-action {
    flex-wrap: wrap;
  }
}

/* Phase 3 gallery page */
.gallery-page .subpage-main {
  padding-top: 46px;
}

.gallery-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 32px;
  min-height: 292px;
  overflow: hidden;
}

.gallery-hero::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 20px;
  width: min(48vw, 620px);
  height: 18px;
  border-top: 3px solid rgba(39, 121, 215, 0.62);
  border-bottom: 3px solid rgba(238, 111, 130, 0.68);
  border-radius: 50%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.gallery-hero-copy {
  position: relative;
  z-index: 2;
  padding: 12px 0 18px;
}

.gallery-hero h1 {
  margin: 0 0 22px;
  color: #ee6f82;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.gallery-hero-copy > p:last-child {
  margin: 0;
  color: #242424;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.6;
}

.gallery-hero-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.055);
}

.gallery-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 28%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.66) 46%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.gallery-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.88 / 1;
  object-fit: cover;
  object-position: center;
}

.gallery-introduction,
.gallery-list-section {
  margin-top: 28px;
}

.gallery-introduction > p {
  margin: 0;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}

.gallery-list-heading {
  align-items: flex-start;
  gap: 18px;
}

.gallery-filter {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-filter button {
  min-width: 82px;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid #eeeeee;
  border-radius: 999px;
  background: #ffffff;
  color: #242424;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.gallery-filter button.active {
  border-color: #ee6f82;
  background: #ee6f82;
  color: #ffffff;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-photo-card {
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.055);
  cursor: pointer;
}

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

.gallery-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.58 / 1;
  height: auto;
  object-fit: cover;
}

.gallery-photo-card span {
  display: block;
  padding: 9px 12px 11px;
  color: #242424;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.gallery-empty {
  margin: 18px 0 0;
  padding: 18px 20px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  color: #777777;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  white-space: nowrap;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(36, 36, 36, 0.78);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox img {
  display: block;
  max-width: min(90vw, 960px);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  background: #ffffff;
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  min-width: 72px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #ee6f82;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  min-width: 62px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #ee6f82;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-lightbox-prev { left: 24px; }
.gallery-lightbox-next { right: 24px; }

@media (max-width: 1200px) {
  .gallery-page .subpage-main {
    padding-top: 30px;
  }

  .gallery-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .gallery-hero h1 {
    font-size: 42px;
  }

  .gallery-hero-copy > p:last-child {
    font-size: 24px;
  }

  .gallery-list-heading,
  .gallery-list-heading > div {
    display: block;
  }

  .gallery-filter {
    justify-content: flex-start;
    margin-top: 16px;
  }
}

@media (max-width: 520px) {
  .gallery-page .subpage-main {
    width: calc(100vw - 44px);
    padding-top: 26px;
  }

  .gallery-hero {
    gap: 18px;
  }

  .gallery-hero::after {
    width: 82vw;
    bottom: 6px;
  }

  .gallery-hero h1 {
    margin-bottom: 18px;
    font-size: 38px;
  }

  .gallery-hero-copy > p:last-child {
    font-size: 20px;
  }

  .gallery-hero-photo img {
    aspect-ratio: 1.55 / 1;
  }

  .gallery-introduction > p {
    font-size: 13px;
  }

  .gallery-list-heading {
    margin-bottom: 20px;
  }

  .gallery-filter {
    gap: 8px;
  }

  .gallery-filter button {
    min-width: 0;
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-empty {
    padding: 16px;
    font-size: 12px;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox img {
    max-width: calc(100vw - 36px);
    max-height: 78vh;
  }

  .gallery-lightbox-close {
    top: 16px;
    right: 16px;
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 16px;
    min-width: 56px;
    min-height: 38px;
    transform: none;
  }

  .gallery-lightbox-prev { left: 18px; }
  .gallery-lightbox-next { right: 18px; }
}

/* Phase 3 news page */
.news-page .subpage-main,
.news-detail-page .subpage-main {
  padding-top: 46px;
}

.news-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 32px;
  min-height: 292px;
  overflow: hidden;
}

.news-hero::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 20px;
  width: min(48vw, 620px);
  height: 18px;
  border-top: 3px solid rgba(139, 93, 232, 0.62);
  border-bottom: 3px solid rgba(238, 111, 130, 0.68);
  border-radius: 50%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.news-hero-copy {
  position: relative;
  z-index: 2;
  padding: 12px 0 18px;
}

.news-hero h1 {
  margin: 0 0 22px;
  color: #ee6f82;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.news-hero-copy > p:last-child {
  margin: 0;
  color: #242424;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.6;
}

.news-hero-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.055);
}

.news-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 28%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.66) 46%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.news-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.88 / 1;
  object-fit: cover;
  object-position: center;
}

.news-information,
.news-list-section {
  margin-top: 28px;
}

.news-information > p {
  margin: 0;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}

.news-list-heading {
  align-items: flex-start;
  gap: 18px;
}

.news-filter {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.news-filter button {
  min-width: 82px;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid #eeeeee;
  border-radius: 999px;
  background: #ffffff;
  color: #242424;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.news-filter button.active {
  border-color: #ee6f82;
  background: #ee6f82;
  color: #ffffff;
}

.news-list-page {
  display: grid;
  gap: 12px;
}

.news-list-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 18px 22px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  color: #242424;
}

.news-list-card.has-detail {
  cursor: pointer;
}

.news-list-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.news-list-meta time,
.news-detail-meta time {
  color: #ee6f82;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.news-list-copy {
  min-width: 0;
}

.news-list-copy h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.news-list-copy p {
  margin: 6px 0 0;
  color: #555555;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.news-detail-mark {
  color: #ee6f82;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.news-empty {
  margin: 18px 0 0;
  padding: 18px 20px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  color: #777777;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  white-space: nowrap;
}

.news-detail-shell {
  margin-top: 0;
}

.news-detail-article,
.news-detail-empty {
  padding: 40px 42px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.news-detail-article h1,
.news-detail-empty h1 {
  margin: 0;
  color: #242424;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.news-detail-image {
  display: block;
  width: 100%;
  max-height: 430px;
  margin-top: 24px;
  border-radius: 8px;
  object-fit: cover;
}

.news-detail-body {
  margin-top: 26px;
}

.news-detail-body p,
.news-detail-empty p {
  margin: 0;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}

.news-detail-body p {
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.news-detail-body a {
  color: #ef5f8f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}
.news-detail-body a:hover,
.news-detail-body a:focus {
  color: #d94779;
}
.news-detail-body p + p {
  margin-top: 14px;
}

.news-detail-article .outline-button,
.news-detail-empty .outline-button {
  margin-top: 30px;
}

.news-tag.orange { background: #fb8160; }

.news-page .cta-panel,
.news-detail-page .cta-panel {
  width: 100%;
}

@media (max-width: 1200px) {
  .news-page .subpage-main,
  .news-detail-page .subpage-main {
    padding-top: 30px;
  }

  .news-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .news-hero h1 {
    font-size: 42px;
  }

  .news-hero-copy > p:last-child {
    font-size: 24px;
  }

  .news-list-heading,
  .news-list-heading > div {
    display: block;
  }

  .news-filter {
    justify-content: flex-start;
    margin-top: 16px;
  }
}

@media (max-width: 520px) {
  .news-page .subpage-main,
  .news-detail-page .subpage-main {
    width: calc(100vw - 44px);
    padding-top: 26px;
  }

  .news-hero {
    gap: 18px;
  }

  .news-hero::after {
    width: 82vw;
    bottom: 6px;
  }

  .news-hero h1 {
    margin-bottom: 18px;
    font-size: 38px;
  }

  .news-hero-copy > p:last-child {
    font-size: 20px;
  }

  .news-hero-photo img {
    aspect-ratio: 1.55 / 1;
  }

  .news-information > p {
    font-size: 13px;
  }

  .news-list-heading {
    margin-bottom: 20px;
  }

  .news-filter {
    gap: 8px;
  }

  .news-filter button {
    min-width: 0;
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .news-list-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .news-list-meta {
    flex-wrap: wrap;
  }

  .news-detail-mark {
    justify-self: start;
  }

  .news-detail-article,
  .news-detail-empty {
    padding: 30px 22px;
  }

  .news-detail-article h1,
  .news-detail-empty h1 {
    font-size: 22px;
  }
}

@media (max-width: 340px) {
  .news-page .news-information .section-heading,
  .news-page .news-list-heading > div {
    display: block;
  }

  .news-page .news-information .section-heading p,
  .news-page .news-list-heading > div p {
    margin-top: 7px;
  }
}

/* Phase 3 sponsor page */
.sponsor-grid .sponsor-logo-card,
.sponsor-grid .sponsor-empty {
  box-sizing: border-box;
  min-width: 0;
}

.sponsor-grid .sponsor-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  background: #ffffff;
  color: #30506f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.sponsor-grid .sponsor-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sponsor-grid .sponsor-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  border: 1px dashed rgba(238, 111, 130, 0.5);
  border-radius: 6px;
  background: #fffafb;
  color: #6f6f6f;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}



.sponsor-page .subpage-main {
  padding-top: 46px;
}

.sponsor-main > .panel,
.sponsor-main > .sponsor-story-grid,
.sponsor-final-cta {
  margin-top: 28px;
}

.sponsor-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 32px;
  min-height: 300px;
  overflow: hidden;
}

.sponsor-hero::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 20px;
  width: min(48vw, 620px);
  height: 18px;
  border-top: 3px solid rgba(238, 111, 130, 0.55);
  border-bottom: 3px solid rgba(123, 150, 255, 0.45);
  border-radius: 50%;
  transform: rotate(-7deg);
  opacity: 0.65;
  pointer-events: none;
}

.sponsor-hero-copy {
  position: relative;
  z-index: 2;
  padding: 10px 0 18px;
}

.sponsor-hero h1 {
  margin: 0 0 18px;
  color: #ee6f82;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.sponsor-hero-main {
  margin: 0 0 18px;
  color: #242424;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.62;
}

.sponsor-hero-main span {
  display: block;
}

.sponsor-hero-main span:nth-child(2) {
  color: #ee6f82;
}

.sponsor-hero-body {
  max-width: 460px;
  margin: 0;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.sponsor-hero-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.055);
}

.sponsor-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 28%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.66) 46%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.sponsor-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.88 / 1;
  object-fit: cover;
  object-position: center;
}

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

.sponsor-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 24px;
  margin-bottom: 14px;
  padding: 0 12px;
  border: 1px solid rgba(238, 111, 130, 0.45);
  border-radius: 999px;
  color: #ee6f82;
  background: #fff8fb;
  font-size: 12px;
  font-weight: 700;
}

.sponsor-text-body,
.sponsor-lead,
.sponsor-note,
.sponsor-faq-item p,
.sponsor-final-cta p {
  color: #424242;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.sponsor-text-body p,
.sponsor-final-cta p {
  margin: 0;
}

.sponsor-text-body p + p,
.sponsor-final-cta p + p {
  margin-top: 10px;
}

.sponsor-lead {
  margin: 16px 0 0;
}

.sponsor-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.sponsor-use-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
}

.sponsor-use-card strong {
  color: #242424;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.sponsor-use-icon,
.sponsor-benefit-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(238, 111, 130, 0.5);
  border-radius: 50%;
  color: #ee6f82;
  font-size: 12px;
  font-weight: 700;
}

.sponsor-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(238, 111, 130, 0.35);
  border-radius: 8px;
  background: #fffafb;
}

.sponsor-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.sponsor-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.sponsor-plan-table {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 8px;
}

.sponsor-plan-row {
  display: grid;
  grid-template-columns: minmax(146px, 1.05fr) repeat(4, minmax(0, 0.95fr));
}

.sponsor-plan-row > div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 54px;
  padding: 10px 8px;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  color: #242424;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.sponsor-plan-row > div:last-child {
  border-right: 0;
}

.sponsor-plan-row:last-child > div {
  border-bottom: 0;
}

.sponsor-plan-head > div {
  min-height: 92px;
  background: #fff8fb;
}

.sponsor-plan-name {
  flex-direction: column;
  gap: 4px;
}

.sponsor-plan-name span,
.sponsor-plan-card > span {
  color: #ee6f82;
  font-size: 10px;
  font-weight: 700;
}

.sponsor-plan-name strong,
.sponsor-plan-card h3 {
  color: #242424;
  font-size: 14px;
  font-weight: 700;
}

.sponsor-plan-name em,
.sponsor-plan-card > strong {
  color: #ee6f82;
  font-style: normal;
  font-size: 15px;
  font-weight: 700;
}

.sponsor-feature {
  justify-content: flex-start !important;
  padding-left: 16px !important;
  text-align: left !important;
}

.feature-on {
  color: #ee6f82 !important;
  font-size: 18px !important;
}

.feature-off {
  color: #b7b7b7 !important;
  font-size: 16px !important;
}

.sponsor-plan-cards {
  display: none;
}

.sponsor-partner-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 163px));
  justify-content: center;
  align-items: stretch;
  margin-top: 20px;
}

.sponsor-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.sponsor-faq-item {
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
}

.sponsor-faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  color: #242424;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.sponsor-faq-item p {
  margin: 0;
  padding: 0 18px 16px;
}

.sponsor-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  background: #fff8f6;
}

.sponsor-final-cta h2 {
  margin: 0 0 12px;
  color: #ee6f82;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
}

.sponsor-page .cta-panel {
  width: 100%;
}

@media (max-width: 1200px) {
  .sponsor-page .subpage-main {
    padding-top: 30px;
  }

  .sponsor-hero,
  .sponsor-story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .sponsor-hero h1 {
    font-size: 42px;
  }

  .sponsor-hero-main {
    font-size: 24px;
  }

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

  .sponsor-plan-row {
    grid-template-columns: minmax(126px, 1fr) repeat(4, minmax(84px, 1fr));
  }

  .sponsor-final-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 520px) {
  .sponsor-page .subpage-main {
    width: calc(100vw - 44px);
    padding-top: 26px;
  }

  .sponsor-main > .panel,
  .sponsor-main > .sponsor-story-grid,
  .sponsor-final-cta {
    margin-top: 24px;
  }

  .sponsor-hero {
    gap: 18px;
  }

  .sponsor-hero::after {
    width: 82vw;
    bottom: 6px;
  }

  .sponsor-hero-copy {
    padding: 0 0 8px;
  }

  .sponsor-hero h1 {
    margin-bottom: 14px;
    font-size: 34px;
  }

  .sponsor-hero-main {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.68;
  }

  .sponsor-hero-body,
  .sponsor-text-body,
  .sponsor-lead,
  .sponsor-note,
  .sponsor-benefit-list li,
  .sponsor-faq-item summary,
  .sponsor-faq-item p,
  .sponsor-final-cta p {
    font-size: 13px;
  }

  .sponsor-hero-photo img {
    aspect-ratio: 1.45 / 1;
  }

  .sponsor-use-grid,
  .sponsor-benefit-list,
  .sponsor-partner-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-plan-table {
    display: none;
  }

  .sponsor-plan-cards {
    display: grid;
    gap: 14px;
    margin-top: 20px;
  }

  .sponsor-plan-card {
    padding: 18px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #ffffff;
  }

  .sponsor-plan-card h3 {
    margin: 4px 0 6px;
  }

  .sponsor-plan-card ul {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
  }

  .sponsor-plan-card li {
    color: #242424;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
  }

  .sponsor-plan-card li.not-included {
    color: #a0a0a0;
  }

  .sponsor-grid .sponsor-logo-card {
    min-height: 40px;
  }

  .sponsor-grid .sponsor-logo-card img {
    max-height: 24px;
  }

  .sponsor-final-cta .cta-button {
    width: 100%;
    min-width: 0;
    white-space: normal;
    line-height: 1.45;
    text-align: center;
  }

  .sponsor-final-cta h2 {
    font-size: 21px;
  }
}
/* Sponsor design master alignment */
.sponsor-page .subpage-main {
  padding-top: 34px;
}

.sponsor-hero {
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 42px;
  min-height: 374px;
  padding: 10px 0 18px;
}

.sponsor-hero::after {
  right: 14px;
  bottom: 34px;
  width: min(54vw, 700px);
  height: 28px;
  border-top-color: rgba(238, 111, 130, 0.62);
  border-bottom-color: rgba(123, 150, 255, 0.46);
  opacity: 0.72;
}

.sponsor-hero-copy {
  padding: 12px 0 20px;
}

.sponsor-hero h1 {
  margin-bottom: 20px;
  font-size: 62px;
  letter-spacing: 0;
}

.sponsor-hero-main {
  margin-bottom: 22px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.56;
}

.sponsor-hero-body {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.95;
}

.sponsor-hero-photo {
  border-radius: 12px;
}

.sponsor-hero-photo img {
  aspect-ratio: 1.72 / 1;
  object-position: center 46%;
}

.sponsor-main > .panel,
.sponsor-main > .sponsor-story-grid,
.sponsor-main > .sponsor-support-grid,
.sponsor-final-cta {
  margin-top: 30px;
}

.sponsor-story-grid,
.sponsor-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.055);
}

.sponsor-story-grid > .panel,
.sponsor-support-grid > .panel {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.sponsor-story-grid > .panel + .panel,
.sponsor-support-grid > .panel + .panel {
  border-left: 1px solid #eeeeee;
}

.sponsor-section-number {
  display: block;
  min-width: 0;
  height: auto;
  margin-bottom: 12px;
  padding: 0 0 11px;
  border: 0;
  border-bottom: 2px solid rgba(238, 111, 130, 0.55);
  border-radius: 0;
  background: transparent;
  color: #ee6f82;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.sponsor-text-panel,
.sponsor-uses-panel,
.sponsor-benefits-panel,
.sponsor-plan-section,
.sponsor-partners-section,
.sponsor-faq-section {
  padding: 36px;
}

.sponsor-text-panel .section-heading h2,
.sponsor-uses-panel .section-heading h2,
.sponsor-benefits-panel .section-heading h2,
.sponsor-plan-section .section-heading h2,
.sponsor-partners-section .section-heading h2,
.sponsor-faq-section .section-heading h2 {
  font-size: 25px;
  line-height: 1.42;
}

.sponsor-text-panel {
  position: relative;
}

.sponsor-text-panel::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 86px;
  height: 66px;
  border: 2px solid rgba(238, 111, 130, 0.24);
  border-radius: 20px;
  opacity: 0.55;
  pointer-events: none;
}

.sponsor-text-panel:nth-child(2)::after {
  width: 92px;
  height: 58px;
  border-radius: 6px;
  box-shadow: inset 24px 0 0 rgba(238,111,130,0.06), inset -24px 0 0 rgba(251,129,96,0.05);
}

.sponsor-uses-panel > .section-heading,
.sponsor-plan-section > .section-heading,
.sponsor-partners-section > .section-heading,
.sponsor-faq-section > .section-heading {
  align-items: center;
  text-align: center;
}

.sponsor-uses-panel > .sponsor-section-number,
.sponsor-plan-section > .sponsor-section-number,
.sponsor-partners-section > .sponsor-section-number,
.sponsor-faq-section > .sponsor-section-number {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.sponsor-use-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.sponsor-use-card {
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 112px;
  padding: 16px 10px;
  border-color: #f0eeee;
  border-radius: 8px;
  text-align: center;
}

.sponsor-use-icon,
.sponsor-benefit-list span {
  width: 34px;
  height: 34px;
  color: #ee6f82;
  font-size: 15px;
}

.sponsor-use-card strong {
  font-size: 13px;
}

.sponsor-note {
  margin-top: 22px;
  padding: 14px 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #fff8fb, #fffdfb);
  text-align: center;
}

.sponsor-support-grid .sponsor-benefit-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.sponsor-inkind-panel .sponsor-use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sponsor-inkind-panel .sponsor-use-card {
  min-height: 46px;
  padding: 10px 12px;
  border-color: rgba(238, 111, 130, 0.38);
  border-radius: 999px;
  background: #ffffff;
}

.sponsor-inkind-panel .sponsor-use-icon {
  display: none;
}

.sponsor-inkind-panel .sponsor-use-card strong {
  color: #ee6f82;
  font-size: 12px;
}

.sponsor-plan-section {
  padding: 38px 32px 34px;
}

.sponsor-plan-layout {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  background: #ffffff;
}

.sponsor-plan-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 14px;
  background: linear-gradient(180deg, #ff9a62, #ee6f82);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.sponsor-plan-table {
  margin-top: 0;
  border: 0;
  border-radius: 0;
}

.sponsor-plan-row {
  grid-template-columns: minmax(150px, 1.05fr) repeat(4, minmax(0, 1fr));
}

.sponsor-plan-row > div {
  min-height: 60px;
  padding: 12px 10px;
  border-color: #eeeeee;
}

.sponsor-plan-head > div {
  min-height: 112px;
  background: #fff9f6;
}

.sponsor-plan-head > div:first-child {
  background: #fffdfb;
  color: #ee6f82;
  font-size: 15px;
}

.sponsor-plan-name span {
  font-size: 10px;
}

.sponsor-plan-name strong {
  font-size: 15px;
}

.sponsor-plan-name em {
  margin-top: 4px;
  font-size: 20px;
}

.sponsor-plan-name-gold { background: #fff4e4 !important; }
.sponsor-plan-name-silver { background: #f6f7f8 !important; }
.sponsor-plan-name-bronze { background: #fff1e8 !important; }
.sponsor-plan-name-support { background: #fff3f8 !important; }
.sponsor-plan-name-gold strong,
.sponsor-plan-name-gold em { color: #f09a28; }
.sponsor-plan-name-silver strong,
.sponsor-plan-name-silver em { color: #8c98a4; }
.sponsor-plan-name-bronze strong,
.sponsor-plan-name-bronze em { color: #c67b43; }
.sponsor-plan-name-support strong,
.sponsor-plan-name-support em { color: #ee6f82; }

.feature-on {
  color: #ee6f82 !important;
  font-size: 20px !important;
}

.sponsor-plan-section .sponsor-note {
  max-width: 520px;
  margin-left: auto;
  text-align: right;
  background: transparent;
}

.sponsor-partners-section {
  text-align: center;
}

.sponsor-partner-grid {
  margin-top: 24px;
}

.sponsor-faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sponsor-faq-item summary {
  min-height: 54px;
  padding: 17px 18px;
}

.sponsor-final-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 38px 42px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(100deg, #fff0f5 0%, #fff8f3 54%, #ffe9df 100%);
  box-shadow: 0 10px 24px rgba(238, 111, 130, 0.12);
}

.sponsor-final-cta::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 116px;
  height: 52px;
  border: 2px solid rgba(238, 111, 130, 0.22);
  border-radius: 52px 52px 18px 18px;
  opacity: 0.55;
  pointer-events: none;
}

.sponsor-final-cta h2 {
  font-size: 30px;
}

.sponsor-final-cta .cta-button {
  min-width: 270px;
}

@media (max-width: 1200px) {
  .sponsor-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sponsor-story-grid,
  .sponsor-support-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-story-grid > .panel + .panel,
  .sponsor-support-grid > .panel + .panel {
    border-left: 0;
    border-top: 1px solid #eeeeee;
  }

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

  .sponsor-plan-layout {
    grid-template-columns: 1fr;
  }

  .sponsor-plan-rail {
    flex-direction: row;
    min-height: 72px;
  }

  .sponsor-faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .sponsor-hero h1 {
    font-size: 38px;
  }

  .sponsor-hero-main {
    font-size: 23px;
  }

  .sponsor-text-panel,
  .sponsor-uses-panel,
  .sponsor-benefits-panel,
  .sponsor-plan-section,
  .sponsor-partners-section,
  .sponsor-faq-section {
    padding: 27px 20px;
  }

  .sponsor-section-number {
    font-size: 28px;
  }

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

  .sponsor-use-card {
    min-height: 94px;
  }

  .sponsor-inkind-panel .sponsor-use-card {
    min-height: 42px;
  }

  .sponsor-plan-rail {
    flex-wrap: wrap;
    gap: 6px 10px;
    min-height: 66px;
    font-size: 17px;
  }

  .sponsor-plan-card {
    border-left: 5px solid #ee6f82;
  }

  .sponsor-plan-card-gold { border-left-color: #f09a28; }
  .sponsor-plan-card-silver { border-left-color: #8c98a4; }
  .sponsor-plan-card-bronze { border-left-color: #c67b43; }
  .sponsor-plan-card-support { border-left-color: #ee6f82; }

  .sponsor-plan-card > strong {
    display: block;
    margin-top: 8px;
    font-size: 22px;
  }

  .sponsor-faq-item summary {
    min-height: 52px;
  }

  .sponsor-final-cta {
    padding: 30px 22px;
  }

  .sponsor-final-cta .cta-button {
    min-width: 0;
  }
}

@media (max-width: 340px) {
  .sponsor-use-grid,
  .sponsor-inkind-panel .sponsor-use-grid {
    grid-template-columns: 1fr;
  }
}
/* Sponsor final visual alignment to image master */
@media (min-width: 1201px) {
  .sponsor-page .subpage-main {
    padding-top: 26px;
  }

  .sponsor-hero {
    grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
    gap: 30px;
    min-height: 338px;
    padding-bottom: 10px;
  }

  .sponsor-hero h1 {
    margin-bottom: 17px;
    font-size: 56px;
  }

  .sponsor-hero-main {
    margin-bottom: 17px;
    font-size: 35px;
    line-height: 1.44;
  }

  .sponsor-hero-body {
    max-width: 430px;
    font-size: 13px;
    line-height: 1.85;
  }

  .sponsor-hero-photo img {
    aspect-ratio: 1.82 / 1;
    object-position: center 45%;
  }

  .sponsor-main > .panel,
  .sponsor-main > .sponsor-story-grid,
  .sponsor-main > .sponsor-support-grid,
  .sponsor-final-cta {
    margin-top: 20px;
  }

  .sponsor-text-panel,
  .sponsor-uses-panel,
  .sponsor-benefits-panel,
  .sponsor-plan-section,
  .sponsor-partners-section,
  .sponsor-faq-section {
    padding: 28px 32px;
  }

  .sponsor-section-number {
    margin-bottom: 10px;
    padding-bottom: 8px;
    font-size: 32px;
  }

  .sponsor-text-panel .section-heading h2,
  .sponsor-uses-panel .section-heading h2,
  .sponsor-benefits-panel .section-heading h2,
  .sponsor-plan-section .section-heading h2,
  .sponsor-partners-section .section-heading h2,
  .sponsor-faq-section .section-heading h2 {
    font-size: 22px;
  }

  .sponsor-text-body,
  .sponsor-lead,
  .sponsor-note,
  .sponsor-faq-item p,
  .sponsor-final-cta p {
    font-size: 12px;
    line-height: 1.82;
  }

  .sponsor-text-body p + p,
  .sponsor-final-cta p + p {
    margin-top: 6px;
  }

  .sponsor-text-panel::after {
    right: 24px;
    bottom: 18px;
    width: 116px;
    height: 58px;
    border-color: rgba(238, 111, 130, 0.32);
  }

  .sponsor-text-panel:nth-child(2)::after {
    width: 126px;
    height: 64px;
  }

  .sponsor-use-grid {
    gap: 12px;
    margin-top: 19px;
  }

  .sponsor-use-card {
    min-height: 98px;
    padding: 14px 8px;
  }

  .sponsor-use-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .sponsor-use-card strong {
    font-size: 12px;
  }

  .sponsor-note {
    margin-top: 14px;
    padding: 10px 14px;
  }

  .sponsor-support-grid .sponsor-benefit-list {
    gap: 7px;
    margin-top: 16px;
  }

  .sponsor-benefit-list li {
    font-size: 12px;
    line-height: 1.5;
  }

  .sponsor-benefit-list span {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .sponsor-inkind-panel .sponsor-use-grid {
    margin-top: 18px;
    gap: 10px 12px;
  }

  .sponsor-inkind-panel .sponsor-use-card {
    min-height: 38px;
    padding: 8px 11px;
  }

  .sponsor-plan-section {
    padding: 28px 22px 24px;
  }

  .sponsor-plan-layout {
    grid-template-columns: 148px minmax(0, 1fr);
    margin-top: 18px;
  }

  .sponsor-plan-rail {
    gap: 6px;
    font-size: 19px;
  }

  .sponsor-plan-head > div {
    min-height: 82px;
  }

  .sponsor-plan-row > div {
    min-height: 42px;
    padding: 7px 8px;
    font-size: 11px;
  }

  .sponsor-plan-name strong {
    font-size: 13px;
  }

  .sponsor-plan-name em {
    font-size: 18px;
  }

  .feature-on,
  .feature-off {
    font-size: 17px !important;
  }

  .sponsor-plan-section .sponsor-note {
    margin-top: 8px;
    padding: 0;
    font-size: 11px;
  }

  .sponsor-partners-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .sponsor-partner-grid {
    margin-top: 18px;
    grid-template-columns: repeat(6, 163px);
  }

  .sponsor-faq-section {
    padding-top: 26px;
  }

  .sponsor-faq-list {
    margin-top: 16px;
    gap: 8px 20px;
  }

  .sponsor-faq-item summary {
    min-height: 42px;
    padding: 11px 12px;
    font-size: 12px;
  }

  .sponsor-faq-item p {
    padding: 0 12px 12px;
  }

  .sponsor-final-cta {
    min-height: 180px;
    margin-top: 26px;
    padding: 42px 92px;
    border-radius: 0;
    background: linear-gradient(105deg, #f05f90 0%, #fb8160 100%);
    color: #ffffff;
  }

  .sponsor-final-cta h2,
  .sponsor-final-cta p {
    color: #ffffff;
  }

  .sponsor-final-cta h2 {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .sponsor-final-cta .cta-button {
    min-width: 420px;
    min-height: 68px;
    border: 0;
    background: #ffffff;
    color: #ee6f82;
    box-shadow: 0 14px 30px rgba(111, 55, 64, 0.16);
  }

  .sponsor-final-cta::after {
    right: 48px;
    bottom: 28px;
    width: 142px;
    height: 68px;
    border-color: rgba(255,255,255,0.28);
  }
}

@media (max-width: 520px) {
  .sponsor-final-cta {
    background: linear-gradient(105deg, #f05f90 0%, #fb8160 100%);
    color: #ffffff;
  }

  .sponsor-final-cta h2,
  .sponsor-final-cta p {
    color: #ffffff;
  }

  .sponsor-final-cta .cta-button {
    background: #ffffff;
    color: #ee6f82;
    box-shadow: 0 10px 22px rgba(111, 55, 64, 0.13);
  }
}
/* Sponsor final SP CTA guard */
@media (max-width: 1200px) {
  .sponsor-final-cta {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
}

@media (max-width: 520px) {
  .sponsor-final-cta {
    min-height: 0;
    padding: 30px 22px;
  }

  .sponsor-final-cta .cta-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    white-space: normal;
  }
}

/* Sponsor line art final pass */
.sponsor-line-icon,
.sponsor-card-art,
.sponsor-benefits-art,
.sponsor-cta-handshake {
  color: #ee6f82;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sponsor-use-card .sponsor-line-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}

.sponsor-use-card .sponsor-line-icon circle,
.sponsor-use-card .sponsor-line-icon rect,
.sponsor-use-card .sponsor-line-icon path,
.sponsor-card-art circle,
.sponsor-card-art rect,
.sponsor-card-art path,
.sponsor-benefits-art path,
.sponsor-benefits-art circle,
.sponsor-cta-handshake path,
.sponsor-cta-handshake circle {
  vector-effect: non-scaling-stroke;
}

.sponsor-use-card .sponsor-use-icon.sponsor-line-icon {
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0;
}

.sponsor-card-art {
  position: absolute;
  right: 28px;
  bottom: 18px;
  width: 148px;
  height: 88px;
  opacity: 0.84;
  pointer-events: none;
}

.sponsor-card-art-city {
  width: 168px;
  height: 92px;
  right: 22px;
  bottom: 16px;
}

.sponsor-story-grid .sponsor-text-panel {
  min-height: 258px;
  padding-bottom: 34px;
}

.sponsor-text-panel::after,
.sponsor-text-panel:nth-child(2)::after,
.sponsor-final-cta::after {
  content: none;
}

.sponsor-benefits-panel {
  position: relative;
  overflow: hidden;
}

.sponsor-benefits-art {
  position: absolute;
  right: 40px;
  top: 50%;
  width: 176px;
  height: 124px;
  opacity: 0.18;
  transform: translateY(-42%);
  pointer-events: none;
}

.sponsor-benefits-panel > *:not(.sponsor-benefits-art) {
  position: relative;
  z-index: 1;
}

.sponsor-final-cta {
  position: relative;
  overflow: hidden;
}

.sponsor-final-cta > *:not(.sponsor-cta-handshake) {
  position: relative;
  z-index: 1;
}

.sponsor-cta-handshake {
  position: absolute;
  right: 36px;
  bottom: 18px;
  width: 194px;
  height: 132px;
  color: #ffffff;
  opacity: 0.24;
  pointer-events: none;
}

@media (min-width: 1201px) {
  .sponsor-use-card .sponsor-line-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .sponsor-use-card {
    gap: 12px;
  }
}

@media (max-width: 1200px) {
  .sponsor-card-art {
    width: 118px;
    height: 72px;
    opacity: 0.62;
  }

  .sponsor-benefits-art {
    right: 22px;
    width: 138px;
    height: 96px;
  }
}

@media (max-width: 520px) {
  .sponsor-use-card .sponsor-line-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .sponsor-card-art,
  .sponsor-benefits-art {
    display: none;
  }

  .sponsor-cta-handshake {
    right: -22px;
    bottom: 12px;
    width: 150px;
    height: 102px;
    opacity: 0.16;
  }
}

/* Sponsor 01/02 decoration position refinement */
.sponsor-card-art {
  right: 28px;
  bottom: 14px;
  width: 172px;
  height: 102px;
  opacity: 0.7;
}

.sponsor-card-art-city {
  right: 28px;
  bottom: 13px;
  width: 178px;
  height: 98px;
  opacity: 0.7;
}

.sponsor-story-grid .sponsor-text-panel {
  padding-bottom: 30px;
}

.sponsor-story-grid .sponsor-text-body {
  position: relative;
  z-index: 1;
  padding-right: 170px;
}

@media (min-width: 1201px) {
  .sponsor-story-grid .sponsor-text-panel {
    min-height: 258px;
  }

  .sponsor-story-grid .sponsor-text-body {
    padding-right: 170px;
  }
}

@media (max-width: 1200px) {
  .sponsor-story-grid .sponsor-text-body {
    padding-right: 128px;
  }

  .sponsor-card-art {
    right: 24px;
    bottom: 14px;
  }
}

@media (max-width: 520px) {
  .sponsor-story-grid .sponsor-text-body {
    padding-right: 0;
  }
}

/* Sponsor 01/02 decoration overlap guard */
.sponsor-card-art,
.sponsor-card-art-city {
  right: 24px;
}

@media (min-width: 1201px) {
  .sponsor-story-grid .sponsor-text-body {
    padding-right: 180px;
  }
}

/* Sponsor 04 handshake decoration refinement */
.sponsor-benefits-art {
  right: 38px;
  top: auto;
  bottom: 18px;
  width: 184px;
  height: 126px;
  color: #ee6f82;
  opacity: 0.22;
  transform: none;
}

.sponsor-benefits-panel .sponsor-benefit-list {
  padding-right: 190px;
}

@media (min-width: 1201px) {
  .sponsor-benefits-art {
    right: 36px;
    bottom: 16px;
  }
}

@media (max-width: 1200px) {
  .sponsor-benefits-panel .sponsor-benefit-list {
    padding-right: 144px;
  }

  .sponsor-benefits-art {
    right: 22px;
    bottom: 18px;
    width: 136px;
    height: 94px;
    opacity: 0.18;
  }
}

@media (max-width: 520px) {
  .sponsor-benefits-panel .sponsor-benefit-list {
    padding-right: 0;
  }
}

/* Sponsor 04 handshake visual density match */
.sponsor-benefits-art {
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .sponsor-benefits-art {
    opacity: 0.7;
  }
}



/* Subpage hero photo fade alignment */
.concept-hero-photo,
.coach-hero-photo,
.match-hero-photo,
.gallery-hero-photo,
.news-hero-photo,
.sponsor-hero-photo,
.contact-hero-photo {
  border-color: transparent;
  box-shadow: none;
  outline: 0;
}

.concept-hero-photo::before,
.coach-hero-photo::before,
.match-hero-photo::before,
.gallery-hero-photo::before,
.news-hero-photo::before,
.sponsor-hero-photo::before,
.contact-hero-photo::before {
  width: 38%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 30%, rgba(255, 255, 255, 0.84) 54%, rgba(255, 255, 255, 0.42) 78%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 1200px) {
  .concept-hero-photo::before,
  .coach-hero-photo::before,
  .match-hero-photo::before,
  .gallery-hero-photo::before,
  .news-hero-photo::before,
  .sponsor-hero-photo::before,
  .contact-hero-photo::before {
    width: 34%;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 28%, rgba(255, 255, 255, 0.74) 54%, rgba(255, 255, 255, 0.28) 80%, rgba(255, 255, 255, 0) 100%);
  }
}

@media (max-width: 520px) {
  .concept-hero-photo::before,
  .coach-hero-photo::before,
  .match-hero-photo::before,
  .gallery-hero-photo::before,
  .news-hero-photo::before,
  .sponsor-hero-photo::before,
  .contact-hero-photo::before {
    width: 30%;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 28%, rgba(255, 255, 255, 0.62) 56%, rgba(255, 255, 255, 0.18) 82%, rgba(255, 255, 255, 0) 100%);
  }
}

/* Phase 3 contact page */
.contact-main {
  max-width: 1120px;
}

.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  min-height: 248px;
  padding: 34px 0 38px;
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  width: min(52vw, 560px);
  height: 18px;
  border-top: 3px solid rgba(238, 111, 130, 0.72);
  border-bottom: 3px solid rgba(42, 184, 128, 0.38);
  border-radius: 50%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.contact-hero-photo {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 10px;
}

.contact-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 38%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 30%, rgba(255, 255, 255, 0.84) 54%, rgba(255, 255, 255, 0.42) 78%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.contact-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
}
.contact-hero h1 {
  margin: 0 0 22px;
  color: #ee6f82;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}

.contact-hero-lead {
  margin: 0 0 18px;
  color: #242424;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.55;
}

.contact-hero-body,
.contact-intro p {
  margin: 0;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}

.contact-intro,
.contact-form-panel {
  margin-top: 28px;
}

.contact-intro p + p {
  margin-top: 8px;
}

.contact-form-panel {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.contact-backend-note,
.contact-notice,
.contact-status {
  margin: 0 0 22px;
  padding: 13px 16px;
  border: 1px solid #ffd0da;
  border-radius: 8px;
  background: #fff8fa;
  color: #d94f6c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}


.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-status.is-success {
  border-color: rgba(44, 181, 119, 0.35);
  background: rgba(44, 181, 119, 0.08);
  color: #16835a;
}

.contact-status.is-error {
  border-color: rgba(239, 77, 124, 0.35);
  background: rgba(239, 77, 124, 0.08);
  color: #d93067;
}
.contact-type-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-type-fieldset legend {
  margin: 0 0 14px;
  color: #242424;
  font-size: 15px;
  font-weight: 700;
}

.contact-type-fieldset legend span {
  color: #ee6f82;
  font-size: 12px;
}

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

.contact-type-card {
  display: block;
  min-width: 0;
  cursor: pointer;
}

.contact-type-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-type-text {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 17px 16px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(36, 36, 36, 0.04);
}

.contact-type-text strong {
  color: #242424;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-type-text small {
  color: #666666;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-type-card input:checked + .contact-type-text {
  border-color: #ee6f82;
  background: #fff8fa;
  box-shadow: 0 9px 22px rgba(238, 111, 130, 0.13);
}

.contact-type-card input:focus-visible + .contact-type-text,
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 3px solid rgba(238, 111, 130, 0.22);
  outline-offset: 2px;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  margin-top: 22px;
}

.contact-field {
  min-width: 0;
}

.contact-field label {
  display: block;
  margin: 0 0 8px;
  color: #242424;
  font-size: 13px;
  font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #ffffff;
  color: #242424;
  font: inherit;
  font-size: 15px;
  line-height: 1.6;
}

.contact-field input,
.contact-field select {
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 138px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-field-textarea,
.contact-field-checkbox {
  grid-column: 1 / -1;
}

.contact-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 16px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #fffdfd;
  font-weight: 600;
  line-height: 1.7;
}

.contact-consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: #ee6f82;
}

.contact-error,
.contact-type-error {
  min-height: 20px;
  margin: 6px 0 0;
  color: #e24560;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.contact-field.is-invalid input,
.contact-field.is-invalid select,
.contact-field.is-invalid textarea,
.contact-field.is-invalid .contact-consent label {
  border-color: #ee6f82;
  background: #fff8fa;
}

.contact-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.contact-submit,
.contact-secondary-button {
  min-width: 240px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.contact-secondary-button {
  border: 1px solid #ee6f82;
  background: #ffffff;
  color: #ee6f82;
}

.two-actions {
  gap: 14px;
}

.contact-confirm h3 {
  margin: 0 0 8px;
  color: #ee6f82;
  font-size: 24px;
  font-weight: 700;
}

.contact-confirm > p {
  margin: 0 0 22px;
  color: #242424;
  font-size: 14px;
  line-height: 1.85;
}

.contact-confirm dl {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 8px;
}

.contact-confirm-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  border-bottom: 1px solid #eeeeee;
}

.contact-confirm-row:last-child {
  border-bottom: 0;
}

.contact-confirm dt,
.contact-confirm dd {
  margin: 0;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.75;
}

.contact-confirm dt {
  background: #fff8fa;
  color: #d94f6c;
  font-weight: 700;
}

.contact-confirm dd {
  color: #242424;
  font-weight: 500;
  white-space: pre-wrap;
}

@media (max-width: 1200px) {
  .contact-main {
    max-width: none;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding-top: 24px;
  }

  .contact-hero-photo img {
    aspect-ratio: 1.65 / 1;
  }

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

@media (max-width: 520px) {
  .contact-hero {
    gap: 16px;
    padding: 12px 0 24px;
  }

  .contact-hero-photo img {
    aspect-ratio: 1.38 / 1;
  }

  .contact-hero::after {
    width: 82vw;
    bottom: 0;
  }


.contact-hero h1 {
    margin-bottom: 16px;
    font-size: 34px;
  }

  .contact-hero-lead {
    font-size: 20px;
  }

  .contact-hero-body,
  .contact-intro p {
    font-size: 13px;
  }

  .contact-type-grid,
  .contact-field-grid,
  .contact-confirm-row {
    grid-template-columns: 1fr;
  }

  .contact-type-grid {
    gap: 9px;
  }

  .contact-type-text {
    min-height: 0;
    padding: 14px 14px;
  }

  .contact-field-grid {
    gap: 14px;
    margin-top: 18px;
  }

  .contact-actions,
  .two-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-submit,
  .contact-secondary-button {
    width: 100%;
    min-width: 0;
  }

  .contact-confirm dt {
    padding-bottom: 4px;
  }

  .contact-confirm dd {
    padding-top: 4px;
  }
}

/* Sponsor application and plan card refresh */
.sponsor-plan-section .sponsor-plan-layout {
  display: none;
}

.sponsor-plan-section .sponsor-plan-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.sponsor-plan-section .sponsor-plan-card {
  --plan-accent: #ee6f82;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 20px 22px;
  border: 1px solid #f1d9df;
  border-top: 3px solid var(--plan-accent);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(74, 52, 58, 0.06);
  text-align: center;
}

.sponsor-plan-section .sponsor-plan-card-gold { --plan-accent: #efa923; border-color: #f2d28b; background: #fffdf8; }
.sponsor-plan-section .sponsor-plan-card-silver { --plan-accent: #8b98a3; border-color: #ccd2d7; background: #fdfefe; }
.sponsor-plan-section .sponsor-plan-card-bronze { --plan-accent: #d77c43; border-color: #ebc0a7; background: #fffdfb; }
.sponsor-plan-section .sponsor-plan-card-support { --plan-accent: #337fb6; border-color: #bad6ea; background: #fcfeff; }

.sponsor-plan-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: -50px auto 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: #ffffff;
  color: var(--plan-accent);
  box-shadow: 0 5px 12px rgba(74, 52, 58, 0.08);
}

.sponsor-plan-icon-svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.sponsor-plan-section .sponsor-plan-card h3 {
  margin: 3px 0 4px;
  color: #292929;
  font-size: 16px;
  line-height: 1.45;
}

.sponsor-plan-section .sponsor-plan-card > strong {
  color: var(--plan-accent);
  font-size: 22px;
  line-height: 1.35;
}

.sponsor-plan-section .sponsor-plan-card ul {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #eeeeee;
  list-style: none;
  text-align: left;
}

.sponsor-plan-section .sponsor-plan-card li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 7px;
  color: #3e3e3e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.sponsor-plan-check {
  color: var(--plan-accent);
  font-weight: 700;
}

.sponsor-final-cta {
  grid-template-columns: 100px minmax(0, 1fr) minmax(240px, 290px);
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid #f4c8d2;
  border-radius: 8px;
  background: #fffafb;
  box-shadow: 0 8px 20px rgba(74, 52, 58, 0.06);
}

.sponsor-final-cta-logo {
  width: 100%;
  max-width: 96px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transform: scale(1.18);
  transform-origin: center;
}

.sponsor-final-cta-copy {
  min-width: 0;
}

.sponsor-final-cta h2 {
  margin-bottom: 8px;
  font-size: 23px;
}

.sponsor-final-cta p {
  font-size: 12px;
  line-height: 1.75;
}

.sponsor-final-cta-actions {
  display: grid;
  gap: 10px;
}

.sponsor-final-cta .cta-button {
  width: 100%;
  min-width: 0;
  min-height: 44px;
}

.sponsor-final-cta .sponsor-application-link {
  border: 1px solid #ef6d89;
  background: #ffffff;
  color: #e95677;
  box-shadow: none;
}

.sponsor-final-cta .sponsor-application-link:hover,
.sponsor-final-cta .sponsor-application-link:focus-visible {
  background: #fff2f5;
}

.sponsor-application-main {
  max-width: 1040px;
}

.sponsor-application-hero {
  padding: 34px 0 28px;
  text-align: center;
}

.sponsor-application-hero h1 {
  margin: 2px 0 4px;
  color: #ee6f82;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
}

.sponsor-application-lead {
  margin: 0 0 12px;
  color: #222222;
  font-size: 24px;
  font-weight: 700;
}

.sponsor-application-hero > p:last-child {
  margin: 0;
  color: #555555;
  font-size: 14px;
}

.sponsor-application-panel,
.sponsor-application-confirm {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  padding: 36px;
  border-color: #f1dfe3;
  background: #ffffff;
}

.sponsor-application-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  text-align: left;
}

.sponsor-application-heading img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.sponsor-application-heading p {
  margin: 0 0 2px;
  color: #ee6f82;
  font-size: 10px;
  font-weight: 700;
}

.sponsor-application-heading h2,
.sponsor-application-confirm h2 {
  margin: 0;
  color: #272727;
  font-size: 27px;
  line-height: 1.4;
}

.sponsor-application-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.sponsor-application-group + .sponsor-application-group {
  margin-top: 32px;
}

.sponsor-application-group legend {
  width: 100%;
  margin-bottom: 20px;
  padding: 11px 14px;
  border-left: 4px solid #ee6f82;
  background: #fff7f9;
  color: #303030;
  font-size: 17px;
  font-weight: 700;
}

.sponsor-application-group legend span {
  margin-right: 10px;
  color: #ee6f82;
}

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

.application-field {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: #333333;
  font-size: 13px;
  font-weight: 600;
}

.application-field-wide {
  grid-column: 1 / -1;
}

.application-field em,
.application-consent em {
  color: #e64f70;
  font-size: 10px;
  font-style: normal;
}

.application-field > span > small {
  color: #777777;
  font-size: 10px;
  font-weight: 500;
}

.application-field input,
.application-field select,
.application-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: #ffffff;
  color: #222222;
  font: inherit;
  font-weight: 400;
}

.application-field input,
.application-field select {
  min-height: 46px;
  padding: 10px 12px;
}

.application-field textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
  line-height: 1.7;
}

.application-textarea-control {
  display: grid;
  gap: 5px;
}

.application-field > .application-textarea-control > .application-character-count {
  justify-self: end;
  min-width: 4.5em;
  color: #777777;
  font-size: 11px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  text-align: right;
}

.application-field > .application-textarea-control > .application-character-count.is-limit {
  color: #c92849;
  font-weight: 600;
}

.application-field input:focus,
.application-field select:focus,
.application-field textarea:focus {
  border-color: #ee6f82;
  outline: 3px solid rgba(238, 111, 130, 0.14);
}

.application-field.is-invalid input,
.application-field.is-invalid select,
.application-field.is-invalid textarea {
  border-color: #d92f54;
}

.application-error {
  min-height: 1.3em;
  margin: 0;
  color: #c92849;
  font-size: 11px;
  font-weight: 500;
}

.sponsor-application-plan-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sponsor-application-plan {
  --application-plan-accent: #ee6f82;
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.sponsor-application-plan-gold { --application-plan-accent: #d99713; }
.sponsor-application-plan-silver { --application-plan-accent: #7d8993; }
.sponsor-application-plan-bronze { --application-plan-accent: #c56f39; }
.sponsor-application-plan-support { --application-plan-accent: #337fb6; }

.sponsor-application-plan input {
  position: absolute;
  opacity: 0;
}

.sponsor-application-plan > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 12px 14px 12px 42px;
  border: 1px solid #dddddd;
  border-radius: 7px;
  background: #ffffff;
  color: #333333;
}

.sponsor-application-plan > span::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 15px;
  height: 15px;
  border: 1px solid #bbbbbb;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 3px #ffffff;
}

.sponsor-application-plan input:checked + span {
  border-color: var(--application-plan-accent);
  background: #fff9fa;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--application-plan-accent) 13%, transparent);
}

.sponsor-application-plan input:checked + span::before {
  border-color: var(--application-plan-accent);
  background: var(--application-plan-accent);
}

.sponsor-application-plan input:focus-visible + span {
  outline: 3px solid rgba(238, 111, 130, 0.2);
}

.sponsor-application-plan strong,
.sponsor-application-plan b {
  min-width: 0;
  color: inherit;
  font-size: 13px;
}

.sponsor-application-plan b {
  color: var(--application-plan-accent);
  white-space: nowrap;
}

.application-plan-error {
  grid-column: 1 / -1;
}

.application-amount {
  max-width: 360px;
  margin-top: 18px;
}

.application-amount-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.application-amount-control b {
  font-size: 14px;
}

.application-group-note,
.application-upload-note {
  margin: 0 0 18px;
  color: #555555;
  font-size: 12px;
  line-height: 1.8;
}

.application-upload-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 3px solid #ef9aad;
  background: #fff8fa;
}

.application-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid #eeeeee;
  border-radius: 7px;
  color: #444444;
  font-size: 12px;
  line-height: 1.7;
}

.application-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #ee6f82;
}

.application-consent-error {
  margin-top: 7px;
}

.sponsor-application-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.sponsor-application-actions .cta-button,
.sponsor-application-actions .contact-secondary-button {
  min-width: 260px;
}

.sponsor-application-actions [hidden] {
  display: none !important;
}

.application-submit-status {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #f3c7d0;
  background: #fff8fa;
  color: #555555;
  font-size: 14px;
  line-height: 1.8;
}

.application-submit-status[hidden] {
  display: none;
}

.application-submit-status.is-success {
  border-color: #bde8cb;
  background: #f0fff5;
  color: #236b37;
}

.application-submit-status.is-error {
  border-color: #f0b6c2;
  background: #fff5f7;
  color: #a3213c;
}

.application-submit-status.is-sending {
  border-color: #f3d6a2;
  background: #fffaf0;
  color: #8a5b00;
}

.sponsor-application-confirm[hidden] {
  display: none;
}

.sponsor-application-confirm > .subpage-label {
  text-align: center;
}

.sponsor-application-confirm h2 {
  margin-bottom: 24px;
  text-align: center;
}

.sponsor-application-confirm dl {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  margin: 0;
  border-top: 1px solid #eeeeee;
}

.sponsor-application-confirm dt,
.sponsor-application-confirm dd {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid #eeeeee;
  font-size: 13px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.sponsor-application-confirm dt {
  background: #fff8fa;
  color: #555555;
  font-weight: 600;
}

.sponsor-application-confirm dd {
  white-space: pre-wrap;
}

.application-backend-note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid #f0cbd4;
  border-radius: 7px;
  background: #fff8fa;
  color: #555555;
  font-size: 12px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .sponsor-plan-section .sponsor-plan-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }

  .sponsor-final-cta {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .sponsor-final-cta-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .sponsor-plan-section .sponsor-plan-cards {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 32px;
  }

  .sponsor-plan-section .sponsor-plan-card {
    padding: 27px 18px 20px;
  }

  .sponsor-plan-section .sponsor-plan-card > strong {
    font-size: 21px;
  }

  .sponsor-final-cta {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 18px;
  }

  .sponsor-final-cta-logo {
    max-width: 68px;
  }

  .sponsor-final-cta h2 {
    font-size: 19px;
  }

  .sponsor-final-cta p {
    font-size: 11px;
  }

  .sponsor-final-cta-actions {
    grid-template-columns: 1fr;
  }

  .sponsor-application-hero {
    padding: 18px 0 24px;
  }

  .sponsor-application-hero h1 {
    font-size: 29px;
    overflow-wrap: anywhere;
  }

  .sponsor-application-lead {
    font-size: 21px;
  }

  .sponsor-application-panel,
  .sponsor-application-confirm {
    padding: 24px 18px;
  }

  .sponsor-application-heading {
    gap: 12px;
  }

  .sponsor-application-heading img {
    width: 62px;
    height: 62px;
  }

  .sponsor-application-heading h2,
  .sponsor-application-confirm h2 {
    font-size: 23px;
  }

  .sponsor-application-grid,
  .sponsor-application-plan-options {
    grid-template-columns: 1fr;
  }

  .application-field-wide,
  .application-plan-error {
    grid-column: auto;
  }

  .sponsor-application-plan > span {
    min-height: 54px;
  }

  .sponsor-application-actions .cta-button,
  .sponsor-application-actions .contact-secondary-button {
    width: 100%;
    min-width: 0;
  }

  .sponsor-application-confirm dl {
    grid-template-columns: 1fr;
  }

  .sponsor-application-confirm dt {
    padding-bottom: 5px;
  }

  .sponsor-application-confirm dd {
    padding-top: 5px;
  }
}

@media (max-width: 340px) {
  .sponsor-final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sponsor-final-cta-logo {
    margin: 0 auto;
  }

  .sponsor-application-panel,
  .sponsor-application-confirm {
    padding-right: 14px;
    padding-left: 14px;
  }

  .sponsor-application-heading {
    align-items: flex-start;
  }

  .sponsor-application-heading img {
    width: 54px;
    height: 54px;
  }

  .sponsor-application-heading h2 {
    font-size: 21px;
  }

  .sponsor-application-plan > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

/* Sponsor requested final-difference corrections */
.sponsor-uses-panel > .sponsor-section-number,
.sponsor-plan-section > .sponsor-section-number,
.sponsor-partners-section > .sponsor-section-number,
.sponsor-faq-section > .sponsor-section-number {
  width: auto;
  margin-right: 0;
  margin-left: 0;
}

.sponsor-uses-panel > .section-heading,
.sponsor-plan-section > .section-heading,
.sponsor-partners-section > .section-heading,
.sponsor-faq-section > .section-heading {
  align-items: flex-start;
  text-align: left;
}

.sponsor-final-cta {
  background: linear-gradient(105deg, #fff7fa 0%, #ffffff 54%, #fff3f0 100%);
  color: #303030;
}

.sponsor-final-cta h2 {
  color: #e95778;
}

.sponsor-final-cta p {
  color: #3f3f3f;
}

.sponsor-final-cta [data-sponsor-cta-button] {
  border: 1px solid #ef6d89;
  background: linear-gradient(90deg, #f05f90, #fb8160);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(238, 111, 130, 0.18);
}

.sponsor-final-cta .sponsor-application-link {
  border: 1px solid #ef6d89;
  background: #ffffff;
  color: #d94368;
  box-shadow: none;
}

.application-field-help {
  display: block;
  margin-top: -2px;
  color: #777777;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.55;
}


.sponsor-application-group:nth-of-type(3) .application-field:has(input[name="listingName"]),
.sponsor-application-group:nth-of-type(3) .application-field:has(input[name="wearName"]) {
  grid-template-rows: auto minmax(16px, auto) auto auto;
}

.sponsor-application-group:nth-of-type(3) .application-field:has(input[name="listingName"]) > span,
.sponsor-application-group:nth-of-type(3) .application-field:has(input[name="wearName"]) > span {
  grid-row: 1;
}

.sponsor-application-group:nth-of-type(3) .application-field:has(input[name="listingName"]) .application-field-help {
  grid-row: 2;
}

.sponsor-application-group:nth-of-type(3) .application-field:has(input[name="listingName"]) input,
.sponsor-application-group:nth-of-type(3) .application-field:has(input[name="wearName"]) input {
  grid-row: 3;
}

.sponsor-application-group:nth-of-type(3) .application-field:has(input[name="listingName"]) .application-error,
.sponsor-application-group:nth-of-type(3) .application-field:has(input[name="wearName"]) .application-error {
  grid-row: 4;
}
/* Top full-width gallery card */
.home-page .gallery-sponsors { grid-template-columns: 1fr; margin-top: 28px; }
.home-page .gallery-sponsors .gallery-panel { display: grid; grid-template-columns: minmax(210px, 0.28fr) minmax(0, 0.72fr); align-items: center; gap: 24px; min-height: 226px; padding: 30px 32px; }
.home-page .gallery-panel-copy { display: grid; align-content: center; min-width: 0; }
.home-page .gallery-panel .section-heading { display: block; grid-column: auto; grid-row: auto; margin-bottom: 14px; }
.home-page .gallery-panel .section-heading p { margin-top: 12px; }
.home-page .gallery-panel-lead { max-width: 24em; margin: 0 0 20px; color: #444; font-size: 13px; font-weight: 500; line-height: 1.85; }
.home-page .gallery-panel .outline-button { grid-column: auto; grid-row: auto; align-self: auto; justify-self: start; min-width: 146px; margin: 0; }
.home-page .gallery-thumbs { grid-column: auto; grid-row: auto; display: grid; grid-template-columns: repeat(var(--top-gallery-columns, 6), minmax(0, 1fr)); gap: 10px; min-width: 0; }
.home-page .gallery-thumbs img { display: block; width: 100%; max-width: 148px; justify-self: center; aspect-ratio: 0.82 / 1; object-fit: cover; border-radius: 6px; }
.home-page .gallery-thumbs.is-empty { display: grid; min-height: 150px; place-items: center; border: 1px dashed rgba(255, 105, 130, 0.32); border-radius: 6px; background: rgba(255, 248, 250, 0.72); }
.home-page .gallery-thumbs.is-loading { min-height: 150px; }
.home-page .top-gallery-empty { margin: 0; color: #666666; font-size: 13px; font-weight: 700; letter-spacing: 0; }
@media (max-width: 1200px) {
  .home-page .gallery-sponsors .gallery-panel { grid-template-columns: 1fr; gap: 20px; }
  .home-page .gallery-panel .outline-button { justify-self: start; }
  .home-page .gallery-thumbs { grid-template-columns: repeat(var(--top-gallery-tablet-columns, 3), minmax(0, 1fr)); }
  .home-page .gallery-thumbs img { max-width: 320px; aspect-ratio: 1.5 / 1; }
}
@media (max-width: 600px) {
  .home-page .gallery-panel-copy { justify-items: center; text-align: center; }
  .home-page .gallery-panel .section-heading { text-align: center; }
  .home-page .gallery-panel-lead { margin-bottom: 18px; font-size: 13px; line-height: 1.8; }
  .home-page .gallery-panel .outline-button { justify-self: center; }
  .home-page .gallery-thumbs { grid-template-columns: repeat(var(--top-gallery-sp-columns, 2), minmax(0, 1fr)); gap: 8px; }
  .home-page .gallery-thumbs img { max-width: 100%; }
}
/* Top page partner showcase */
.home-sponsors-section {
  margin-top: 28px;
  padding: 30px 34px;
  overflow: hidden;
}
.home-sponsors-heading { align-items: center; }
.home-sponsors-heading > div { display: flex; align-items: baseline; gap: 18px; }
.home-sponsors-intro { margin: 0; color: #555555; font-size: 13px; line-height: 1.7; }
.home-sponsors-showcase { margin-top: 22px; }
.home-sponsors-empty {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  min-height: 82px; padding: 18px 24px;
  border: 1px dashed rgba(238, 111, 130, 0.5); border-radius: 6px;
  background: #fffafb; text-align: center;
}
.home-sponsors-empty p { margin: 0; color: #555555; font-size: 13px; line-height: 1.7; }
.home-sponsors-empty .outline-button { flex: 0 0 auto; }
.home-sponsors-viewport { width: 100%; overflow: hidden; }
.home-sponsors-track { display: flex; width: max-content; margin: 0 auto; will-change: transform; }
.home-sponsors-group { display: flex; flex: 0 0 auto; width: max-content; gap: 18px; padding: 0 9px; }
.home-sponsors-group .sponsor-logo-card {
  display: flex; align-items: center; justify-content: center; box-sizing: border-box;
  flex: 0 0 clamp(180px, 18vw, 230px); min-height: 84px; padding: 14px 18px;
  border: 1px solid #e9e5e6; border-radius: 6px; background: #ffffff;
  box-shadow: 0 5px 14px rgba(74, 52, 58, 0.05); color: #45556a; text-align: center;
}
.home-sponsors-group .sponsor-logo-card img {
  max-width: 100%; max-height: 54px; width: auto; height: auto; object-fit: contain;
}
.home-sponsors-group a.sponsor-logo-card:hover,
.home-sponsors-group a.sponsor-logo-card:focus-visible { border-color: rgba(238, 111, 130, 0.65); }
.home-sponsors-viewport.is-marquee .home-sponsors-track {
  margin: 0; animation: home-sponsors-marquee var(--sponsor-loop-duration) linear infinite;
}
.home-sponsors-viewport.is-marquee:hover .home-sponsors-track,
.home-sponsors-viewport.is-marquee:focus-within .home-sponsors-track { animation-play-state: paused; }
.home-sponsors-viewport.is-reduced { overflow: hidden; }
.home-sponsors-viewport.is-reduced .home-sponsors-track { width: 100%; margin: 0; }
.home-sponsors-viewport.is-reduced .home-sponsors-group {
  flex-wrap: wrap; justify-content: center; width: 100%; padding-right: 0;
}
@keyframes home-sponsors-marquee { to { transform: translateX(calc(-1 * var(--sponsor-loop-width))); } }
@media (max-width: 600px) {
  .home-sponsors-section { padding: 24px 18px; }
  .home-sponsors-heading, .home-sponsors-heading > div, .home-sponsors-empty {
    align-items: center; flex-direction: column;
  }
  .home-sponsors-heading, .home-sponsors-intro { text-align: center; }
  .home-sponsors-heading > div { gap: 4px; }
  .home-sponsors-empty { gap: 14px; padding: 18px 14px; }
  .home-sponsors-group { gap: 14px; padding: 0 7px; }
  .home-sponsors-group .sponsor-logo-card {
  display: flex; align-items: center; justify-content: center; box-sizing: border-box; flex-basis: 164px; min-height: 78px; }
}
@media (prefers-reduced-motion: reduce) { .home-sponsors-track { animation: none !important; } }

/* Sponsor 04 and 07 number alignment */
.sponsor-partners-section > .sponsor-section-number,
.sponsor-plan-section > .sponsor-section-number {
  text-align: left;
}

@media (min-width: 901px) {
  .sponsor-plan-section > .sponsor-section-number {
    margin-right: 10px;
    margin-left: 10px;
  }
}
/* Top page requested copy, partner order, and CTA alignment */
@media (min-width: 1201px) {
  .home-page .cta-art {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}
.home-page .sponsor-recruit-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: #444444;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

@media (max-width: 520px) {
  .home-page .sponsor-recruit-copy {
    margin-top: 20px;
    font-size: 13px;
  }
}

/* Sponsor 07 compact partner plan comparison */
.sponsor-plan-section .sponsor-plan-cards {
  gap: 24px;
  align-items: stretch;
  margin-top: 42px;
}

.sponsor-plan-section .sponsor-plan-card {
  --plan-accent: #ee6f82;
  --plan-border: #f1d9df;
  --plan-tint: #fff8fa;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 58px 22px 22px;
  border: 1px solid var(--plan-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  overflow: visible;
  text-align: center;
}

.sponsor-plan-section .sponsor-plan-card-gold {
  --plan-accent: #ef9700;
  --plan-border: #efb94c;
  --plan-tint: #fff8e8;
}

.sponsor-plan-section .sponsor-plan-card-silver {
  --plan-accent: #7f8b95;
  --plan-border: #bfc7ce;
  --plan-tint: #f5f6f7;
}

.sponsor-plan-section .sponsor-plan-card-bronze {
  --plan-accent: #c96d3c;
  --plan-border: #df9a72;
  --plan-tint: #fff2ea;
}

.sponsor-plan-section .sponsor-plan-card-support {
  --plan-accent: #2374cf;
  --plan-border: #91bff0;
  --plan-tint: #eef7ff;
}

.sponsor-plan-section .sponsor-plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 132px;
  border-radius: 7px 7px 0 0;
  background: var(--plan-tint);
  pointer-events: none;
}

.sponsor-plan-section .sponsor-plan-card > * {
  position: relative;
  z-index: 1;
}

.sponsor-plan-section .sponsor-plan-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0;
  transform: translateX(-50%);
  border: 1px solid var(--plan-accent);
  border-radius: 50%;
  background: var(--plan-tint);
  color: var(--plan-accent);
  box-shadow: 0 3px 8px rgba(74, 52, 58, 0.08);
}

.sponsor-plan-section .sponsor-plan-icon-svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sponsor-plan-section .sponsor-plan-card > span:not(.sponsor-plan-icon) {
  color: var(--plan-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.sponsor-plan-section .sponsor-plan-card h3 {
  margin: 0 0 7px;
  color: #202020;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.sponsor-plan-section .sponsor-plan-card > strong {
  margin: 0;
  color: var(--plan-accent);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
}

.sponsor-plan-section .sponsor-plan-card ul {
  display: grid;
  flex: 1 1 auto;
  align-content: start;
  gap: 9px;
  margin: 23px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid #dddddd;
  background: #ffffff;
  list-style: none;
  text-align: left;
}

.sponsor-plan-section .sponsor-plan-card li {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 8px;
  color: #222222;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.sponsor-plan-section .sponsor-plan-check {
  color: var(--plan-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.sponsor-plan-benefit-text {
  display: inline;
}

.sponsor-plan-benefit-text small {
  margin-left: 2px;
  color: #555555;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.sponsor-plan-section .sponsor-note {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 0;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: #fff6fa;
  color: #222222;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  white-space: nowrap;
}

.sponsor-plan-section .sponsor-note::before {
  content: "i";
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #ee6f82;
  border-radius: 50%;
  color: #ee6f82;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1;
}

@media (max-width: 900px) {
  .sponsor-plan-section .sponsor-plan-cards {
    gap: 36px 20px;
    margin-top: 40px;
  }

  .sponsor-plan-section .sponsor-plan-card {
    padding: 56px 20px 20px;
  }
}

@media (max-width: 520px) {
  .sponsor-plan-section .sponsor-plan-cards {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 38px;
  }

  .sponsor-plan-section .sponsor-plan-card {
    padding: 52px 18px 18px;
  }

  .sponsor-plan-section .sponsor-plan-icon {
    top: -27px;
    width: 54px;
    height: 54px;
  }

  .sponsor-plan-section .sponsor-plan-icon-svg {
    width: 25px;
    height: 25px;
  }

  .sponsor-plan-section .sponsor-plan-card h3 {
    margin-top: 0;
    font-size: 19px;
  }

  .sponsor-plan-section .sponsor-plan-card > strong {
    font-size: 25px;
  }

  .sponsor-plan-section .sponsor-plan-card ul {
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
  }

  .sponsor-plan-section .sponsor-note {
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 13px;
    font-size: 11px;
    text-align: left;
    white-space: normal;
  }

  .sponsor-plan-section .sponsor-note::before {
    width: 20px;
    height: 20px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .home-page .philosophy-panel {
    padding: 22px 24px 20px;
  }

  .home-page .philosophy-panel .section-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 18px;
  }

  .home-page .philosophy-panel .section-heading h2 {
    font-size: clamp(22px, 6.4vw, 27px);
    line-height: 1.08;
    white-space: nowrap;
  }

  .home-page .philosophy-panel .section-heading p {
    font-size: 15px;
    line-height: 1.45;
    white-space: nowrap;
  }

  .home-page .philosophy-panel .philosophy-items {
    margin-bottom: 18px;
  }

  .home-page .philosophy-panel .philosophy-items article {
    padding: 17px 8px 18px;
  }

  .home-page .philosophy-panel .philosophy-items img {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }

  .home-page .philosophy-panel .philosophy-items h3 {
    margin-bottom: 8px;
  }

  .home-page .philosophy-panel .philosophy-items p {
    line-height: 1.7;
  }

  .home-page .sponsors-panel {
    display: grid;
    justify-items: center;
    padding: 26px 24px 28px;
    text-align: center;
  }

  .home-page .sponsors-panel .section-heading.with-action {
    display: contents;
  }

  .home-page .sponsors-panel .section-heading.with-action > div {
    display: grid;
    order: 1;
    justify-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 18px;
    text-align: center;
  }

  .home-page .sponsors-panel .section-heading h2 {
    white-space: nowrap;
  }

  .home-page .sponsors-panel .section-heading p {
    font-size: 15px;
    line-height: 1.5;
    white-space: nowrap;
  }

  .home-page .sponsors-panel .sponsor-recruit-copy {
    order: 2;
    max-width: none;
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
  }

  .home-page .sponsors-panel .small-button {
    order: 3;
    min-width: 190px;
    height: 42px;
    margin-top: 18px;
  }

  .home-page .cta-panel {
    justify-items: center;
    padding: 30px 28px 0;
    text-align: center;
  }

  .home-page .cta-ball {
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .cta-copy {
    text-align: center;
  }

  .home-page .cta-copy h2 {
    font-size: clamp(19px, 5.2vw, 22px);
    line-height: 1.45;
  }

  .home-page .cta-copy p {
    text-align: center;
  }

  .home-page .cta-button {
    justify-self: center;
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .cta-art {
    position: static;
    justify-self: center;
    width: min(100%, 330px);
    height: auto;
    margin: 8px auto 0;
    transform: none;
  }
}

@media (max-width: 520px) {
  .home-page .philosophy-panel {
    margin-top: 18px;
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .home-page .philosophy-panel .section-heading {
    margin-bottom: 16px;
  }

  .home-page .philosophy-panel .philosophy-items {
    margin-bottom: 14px;
  }

  .home-page .philosophy-panel .philosophy-items article {
    padding-top: 12px;
    padding-bottom: 13px;
  }

  .home-page .philosophy-panel .philosophy-items img {
    margin-bottom: 7px;
  }

  .home-page .philosophy-panel .philosophy-items h3 {
    margin-bottom: 5px;
  }

  .home-page .philosophy-panel .philosophy-items p {
    line-height: 1.55;
    white-space: nowrap;
  }

  .home-page .philosophy-panel .philosophy-items p br {
    display: none;
  }
}

.stage-card-link-concept {
  left: 2.4vw;
  top: 302px;
  width: min(28vw, 430px);
  height: 118px;
}


@media (max-width: 520px) {
  .stage-card-link-concept,
  .stage-card-link-coach {
    top: 61.8vw;
    width: 41.8vw;
    height: 18.6vw;
  }

  .stage-card-link-concept {
    left: 4.3vw;
  }

  .stage-card-link-coach {
    left: 52.1vw;
  }

  .home-page .sponsors-panel {
    display: none;
  }
}


@media (max-width: 520px) {
  .home-page .philosophy-panel .section-heading {
    justify-items: center;
    text-align: center;
  }

  .home-page .about-panel .section-heading,
  .home-page .gallery-panel .section-heading {
    justify-content: center;
    align-items: baseline;
    text-align: center;
  }

  .home-page .about-panel .section-heading p,
  .home-page .gallery-panel .section-heading p {
    white-space: nowrap;
  }

  .home-page .cta-panel {
    padding-bottom: 30px;
  }

  .home-page .cta-art {
    display: none;
  }
}


@media (max-width: 520px) {
  .concept-page .concept-message > .section-heading,
  .concept-page .concept-story > .section-heading,
  .concept-page .concept-philosophy > .section-heading,
  .concept-page .concept-care > .section-heading {
    justify-content: center;
    align-items: baseline;
    text-align: center;
  }

  .concept-page .concept-message > .section-heading p,
  .concept-page .concept-story > .section-heading p,
  .concept-page .concept-philosophy > .section-heading p,
  .concept-page .concept-care > .section-heading p {
    white-space: normal;
  }

  .concept-page .concept-mind-heading {
    text-align: center;
  }

  .concept-page .concept-name-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .concept-page .concept-name-grid article {
    display: block;
    min-width: 0;
    padding: 12px 6px;
    text-align: center;
    white-space: normal;
  }

  .concept-page .concept-name-grid .name-word {
    min-width: 0;
    margin-bottom: 5px;
    font-size: 17px;
  }

  .concept-page .concept-name-grid .name-meaning {
    font-size: 13px;
  }

  .concept-page .cta-panel {
    justify-items: center;
    padding: 30px 28px;
    text-align: center;
  }

  .concept-page .cta-ball {
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .concept-page .cta-copy {
    text-align: center;
  }

  .concept-page .cta-button {
    justify-self: center;
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
  }

  .concept-page .cta-art {
    display: none;
  }
}


@media (max-width: 520px) {
  .concept-page .concept-story > .section-heading {
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }

  .concept-page .concept-story > .section-heading p {
    white-space: normal;
  }

  .coach-page .coach-hero h1 {
    color: #ee6f82;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
  }

  .coach-page .coach-intro > .section-heading,
  .coach-page .coach-guidance > .section-heading {
    justify-content: center;
    align-items: baseline;
    text-align: center;
  }

  .coach-page .coach-intro > .section-heading p,
  .coach-page .coach-guidance > .section-heading p {
    white-space: normal;
  }

  .gallery-page .cta-panel {
    justify-items: center;
    padding: 30px 28px;
    text-align: center;
  }

  .gallery-page .cta-ball {
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-page .cta-copy {
    text-align: center;
  }

  .gallery-page .cta-button {
    justify-self: center;
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-page .cta-art {
    display: none;
  }
}


@media (max-width: 520px) {
  .coach-page .coach-intro > .section-heading,
  .coach-page .coach-guidance > .section-heading {
    display: grid;
    justify-items: center;
    gap: 6px;
  }
}


@media (max-width: 520px) {
  .concept-page .concept-philosophy > .section-heading,
  .concept-page .concept-care > .section-heading,
  .contact-page .contact-form-panel > .section-heading {
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }

  .concept-page .concept-philosophy > .section-heading p,
  .concept-page .concept-care > .section-heading p,
  .contact-page .contact-form-panel > .section-heading p {
    white-space: normal;
  }
}


@media (min-width: 521px) and (max-width: 1200px) {

  .home-page .top-content {
    margin-top: 20px;
  }
}


/* Partners directory page */
.sponsor-partners-cta { display: flex; justify-content: center; margin-top: 24px; }
.sponsor-partners-cta[hidden] { display: none; }

/* Sponsor page 04 partner logo sizing */
.sponsor-page .sponsor-partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  width: min(100%, 1120px);
  margin: 26px auto 0;
}

.sponsor-page .sponsor-partner-grid .sponsor-logo-card {
  flex: 0 1 clamp(240px, 20vw, 260px);
  min-height: 132px;
  padding: 12px 18px;
  border-radius: 6px;
}

.sponsor-page .sponsor-partner-grid .sponsor-logo-card img {
  width: 100%;
  max-width: 236px;
  max-height: 118px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .sponsor-page .sponsor-partner-grid {
    gap: 14px;
    margin-top: 22px;
  }

  .sponsor-page .sponsor-partner-grid .sponsor-logo-card {
    flex-basis: min(100%, 280px);
    min-height: 118px;
    padding: 14px 18px;
  }

  .sponsor-page .sponsor-partner-grid .sponsor-logo-card img {
    max-width: min(100%, 240px);
    max-height: 110px;
  }
}

@media (max-width: 360px) {
  .sponsor-page .sponsor-partner-grid .sponsor-logo-card {
    flex-basis: 100%;
    min-height: 108px;
  }

  .sponsor-page .sponsor-partner-grid .sponsor-logo-card img {
    max-height: 96px;
  }
}
.partners-page { background: #ffffff; color: #20232a; }
.partners-page .subpage-main { width: min(100% - 48px, 1180px); margin: 0 auto; padding: 128px 0 76px; }
.partners-hero { max-width: 760px; margin: 0 auto 62px; text-align: center; }
.partners-hero .subpage-label { margin: 0 0 8px; color: #ee6f82; font-weight: 700; font-size: 15px; letter-spacing: 0; }
.partners-hero h1 { margin: 0; color: #26282d; font-size: clamp(48px, 7vw, 72px); line-height: 1; letter-spacing: 0; }
.partners-hero-subtitle { margin: 10px 0 0; color: #ee6f82; font-size: 18px; font-weight: 700; line-height: 1.7; }
.partners-intro { max-width: 920px; margin: 18px auto 0; color: #555; font-size: 15px; line-height: 1.9; }
.partners-directory { display: grid; gap: 58px; }
.partners-empty { display: flex; align-items: center; justify-content: center; gap: 20px; width: min(100%, 700px); margin: 0 auto; padding: 24px; border: 1px dashed rgba(238, 111, 130, 0.55); border-radius: 6px; background: #fffafb; text-align: center; }
.partners-empty p { margin: 0; color: #555; line-height: 1.7; }
.partners-rank-section { --rank-color: #ee6f82; display: grid; gap: 24px; min-width: 0; }
.partners-rank-section-gold { --rank-color: #d7ad4a; }
.partners-rank-section-silver { --rank-color: #9e9fa5; }
.partners-rank-section-bronze { --rank-color: #a87363; }
.partners-rank-section-support { --rank-color: #4fc6bd; }
.partners-rank-heading { position: relative; display: grid; justify-items: center; gap: 3px; width: min(100%, 880px); margin: 0 auto; padding: 0 72px 15px; text-align: center; }
.partners-rank-heading::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: color-mix(in srgb, var(--rank-color) 44%, transparent); }
.partners-rank-heading::after { content: ""; position: absolute; bottom: -4px; left: 50%; width: 8px; height: 8px; background: var(--rank-color); transform: translateX(-50%) rotate(45deg); opacity: 0.68; }
.partners-rank-heading h2 { margin: 0; color: var(--rank-color); font-size: clamp(28px, 4vw, 38px); line-height: 1.1; font-weight: 700; letter-spacing: 0.14em; }
.partners-rank-heading p { margin: 0; color: #2f3137; font-size: 14px; font-weight: 700; line-height: 1.7; }
.partners-directory-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 244px), 286px)); justify-content: center; gap: 22px; width: 100%; margin: 0 auto; }
.partners-rank-section-gold .partners-directory-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 520px)); }
.partners-rank-section-support .partners-directory-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 232px), 270px)); }
.partner-directory-card { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 0; min-height: 210px; padding: 24px 22px; border: 1px solid color-mix(in srgb, var(--rank-color) 26%, #e8e2e4); border-radius: 6px; background: rgba(255,255,255,0.95); box-shadow: 0 8px 18px rgba(50, 44, 48, 0.045); text-align: center; }
.partner-directory-card-gold { min-height: 218px; padding: 28px 32px; }
.partner-directory-logo { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 82px; margin: 0 auto 14px; color: #45556a; font-weight: 700; text-align: center; text-decoration: none; }
.partner-directory-card-gold .partner-directory-logo { min-height: 94px; }
.partner-directory-logo img { display: block; max-width: min(100%, 220px); width: auto; height: auto; object-fit: contain; }
.partner-directory-card-gold .partner-directory-logo img { max-height: 92px; max-width: min(100%, 270px); }
.partner-directory-card-silver .partner-directory-logo img { max-height: 82px; }
.partner-directory-card-bronze .partner-directory-logo img { max-height: 72px; }
.partner-directory-card-support .partner-directory-logo img { max-height: 64px; }
.partner-directory-body { display: flex; flex-direction: column; align-items: center; min-width: 0; width: 100%; }
.partner-directory-body h3 { margin: 0 0 9px; color: #26282d; font-size: 18px; font-weight: 700; line-height: 1.45; overflow-wrap: anywhere; }
.partner-directory-card-gold .partner-directory-body h3 { font-size: 21px; }
.partner-directory-body p { max-width: 24em; margin: 0 0 16px; color: #555; font-size: 13px; line-height: 1.8; overflow-wrap: anywhere; }
.partner-directory-link { display: inline-flex; min-width: 142px; height: 34px; margin-top: auto; border-color: rgba(238, 111, 130, 0.72); color: #ee6f82; font-size: 12px; }
@media (max-width: 900px) {
  .partners-page .subpage-main { width: min(100% - 32px, 820px); padding-top: 112px; }
  .partners-hero { margin-bottom: 48px; }
  .partners-directory { gap: 48px; }
  .partners-rank-heading { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 520px) {
  .partners-page .subpage-main { width: min(100% - 24px, 430px); padding-top: 96px; padding-bottom: 58px; }
  .partners-hero { margin-bottom: 40px; }
  .partners-hero h1 { font-size: clamp(42px, 14vw, 56px); }
  .partners-hero-subtitle { font-size: 16px; }
  .partners-intro { max-width: 34em; font-size: 14px; }
  .partners-directory { gap: 42px; }
  .partners-rank-heading { padding: 0 18px 14px; }
  .partners-rank-heading h2 { font-size: clamp(24px, 8vw, 30px); letter-spacing: 0.1em; }
  .partners-directory-grid, .partners-rank-section-gold .partners-directory-grid, .partners-rank-section-support .partners-directory-grid { grid-template-columns: minmax(0, 1fr); }
  .partner-directory-card, .partner-directory-card-gold { min-height: 0; padding: 22px 18px; }
  .partner-directory-logo, .partner-directory-card-gold .partner-directory-logo { min-height: 78px; margin-bottom: 12px; }
  .partner-directory-card-gold .partner-directory-logo img { max-height: 78px; }
  .partner-directory-card-silver .partner-directory-logo img { max-height: 70px; }
  .partner-directory-card-bronze .partner-directory-logo img { max-height: 62px; }
  .partner-directory-card-support .partner-directory-logo img { max-height: 56px; }
  .partner-directory-body h3, .partner-directory-card-gold .partner-directory-body h3 { font-size: 17px; }
  .partners-empty { flex-direction: column; }
}

/* Desktop header narrow fit guard */
@media (min-width: 1201px) and (max-width: 1320px) {
  .global-nav { left: auto; right: 28px; width: 760px; }
  .nav-item { width: 88px; }
  .nav-item + .nav-item { margin-left: 20px; }
}
/* Hero CMS photo layer viewport-safe final pass */
.phase1-stage.has-cms-hero-photo::before {
  display: none;
  left: 28%;
  width: 72%;
}

.phase1-stage.has-cms-hero-photo::after {
  display: none;
  right: 0;
  width: 50%;
}

@media (max-width: 1200px) {
  .phase1-stage.has-cms-hero-photo::before {
    left: 30%;
    width: 70%;
  }

  .phase1-stage.has-cms-hero-photo::after {
    right: 0;
    width: 58%;
  }

  .top-hero-photo-layer {
    width: 74%;
    height: 44vw;
    clip-path: polygon(
      7% 70%, 10% 57%, 17% 44%, 26% 32%, 37% 22%,
      50% 14%, 64% 8%, 79% 3%, 100% 0,
      100% 64%, 91% 68%, 79% 72%, 65% 76%, 50% 80%,
      35% 85%, 22% 86%, 12% 82%
    );
  }

  .top-hero-photo-layer img {
    inset: -8% 0 0 0;
    height: 108%;
    object-position: center 39%;
  }
}

@media (max-width: 520px) {
  .phase1-stage.has-cms-hero-photo::before {
    left: 31%;
    width: 69%;
  }

  .phase1-stage.has-cms-hero-photo::after {
    right: 0;
    width: 58%;
  }

  .top-hero-photo-layer {
    width: 74%;
    height: 52vw;
    clip-path: polygon(
      6% 69%, 10% 56%, 18% 42%, 29% 30%, 42% 20%,
      57% 11%, 73% 4%, 100% 0,
      100% 65%, 91% 69%, 78% 73%, 63% 77%, 47% 81%,
      31% 85%, 17% 84%, 9% 80%
    );
  }
}

/* Keep hero fixed ornament shadows inside the page */
.phase1-stage {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .phase1-stage {
    overflow-x: hidden;
  }
}


/* TOP delivery layout spacing */
.home-page .top-content {
  margin-top: 28px;
}

@media (max-width: 1200px) {
  .home-page .top-content {
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  .home-page .top-content {
    margin-top: 20px;
  }
}

/* TOP ABOUT fixed-height image guard */
.home-page .about-panel {
  grid-template-columns: 0.88fr 1.12fr;
  height: 320px;
  min-height: 0;
}

.home-page .about-photo {
  height: 100%;
  min-height: 0;
}

.home-page .about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 1200px) {
  .home-page .about-panel {
    grid-template-columns: 0.88fr 1.12fr;
    height: 300px;
    min-height: 0;
  }

  .home-page .about-photo {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .home-page .about-panel {
    grid-template-columns: 1fr;
    height: auto;
  }

  .home-page .about-photo {
    height: 210px;
    min-height: 0;
  }
}
@media (min-width: 521px) and (max-width: 1200px) {
  .home-page .about-copy {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
@media (min-width: 521px) and (max-width: 800px) {
  .home-page .about-panel {
    height: 324px;
  }
}
/* Mobile heading refinements */
@media (max-width: 520px) {
  .home-page .about-panel .section-heading,
  .concept-page .concept-message > .section-heading {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .concept-page .concept-message > .section-heading p {
    white-space: nowrap;
  }
}
