:root {
  --bg: #ffdf00;
  --text: #1f1400;
  --text-muted: #5f4a00;
  --card-bg: rgba(255, 255, 255, 0.95);
  --card-border: rgba(31, 20, 0, 0.14);
  --shadow: 0 16px 32px rgba(31, 20, 0, 0.1);
  --primary: #ffdf00;
  --primary-hover: #f0cf00;
}

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

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.site-frame {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.content-column {
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
}

.page {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(3rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 2.5rem) clamp(5rem, 8vw, 6rem);
}

.hero {
  display: grid;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3rem) 0 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 1.5rem;
  }

  .overview-map {
    max-width: none;
  }

}

.hero-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(31, 20, 0, 0.85);
}

.content-section {
  display: grid;
  gap: 1.75rem;
}

.content-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-list {
  --creator-card-gap: clamp(0.45rem, 2.2vw, 0.75rem);
  --creator-card-width: clamp(98px, 24vw, 135px);
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--creator-card-gap);
  justify-content: center;
}

.program-block {
  display: grid;
  gap: 1.5rem;
}

.program-block + .program-block {
  margin-top: 2.5rem;
}

.program-block-title {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 1.8rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(31, 20, 0, 0.7);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  display: grid;
  gap: 0.6rem;
  grid-auto-rows: max-content;
  padding: 1.6rem 1.6rem;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.card > *:first-child {
  margin-top: 0;
}

.card-media + * {
  margin-top: 0.85rem;
}

.creator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem 0.85rem;
  flex: 1 1 var(--creator-card-width);
  min-width: 88px;
  width: min(100%, var(--creator-card-width));
  max-width: var(--creator-card-width);
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(31, 20, 0, 0.14);
}

.creator-photo {
  width: clamp(62px, 16vw, 88px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 26px rgba(31, 20, 0, 0.16);
}

.creator-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.card strong {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.mission-highlight {
  display: block;
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 5vw, 2.4rem);
  letter-spacing: 0.16em;
  color: inherit;
}

.creator-card strong {
  font-size: clamp(0.8rem, 2.3vw, 0.96rem);
  font-weight: 500;
  text-transform: none;
  color: rgba(31, 20, 0, 0.62);
  letter-spacing: 0.06em;
}

.creator-card-group {
  flex: 1 1 calc((var(--creator-card-width) * 3) + (var(--creator-card-gap) * 2));
  width: min(100%, calc((var(--creator-card-width) * 3) + (var(--creator-card-gap) * 2)));
  max-width: calc((var(--creator-card-width) * 3) + (var(--creator-card-gap) * 2));
  min-height: 140px;
  padding: 1.2rem 1.8rem;
  gap: clamp(0.75rem, 3vw, 1rem);
  align-items: stretch;
}

.creator-card-group strong {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: rgba(31, 20, 0, 0.82);
  letter-spacing: 0.08em;
}

.creator-photo-group {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(31, 20, 0, 0.12);
  box-shadow: 0 14px 26px rgba(31, 20, 0, 0.18);
}

.card span,
.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.card-media {
  width: 100%;
  display: block;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  max-height: 220px;
  margin: 0;
  border: 1px solid rgba(31, 20, 0, 0.12);
  box-shadow: 0 12px 24px rgba(31, 20, 0, 0.12);
}

.card time {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(31, 20, 0, 0.65);
}

.overview-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: stretch;
}

.overview-map {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  border-radius: 16px;
  border: 1px solid rgba(31, 20, 0, 0.16);
}

.overview-details {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.overview-details dt {
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.overview-details dd {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.overview-details dt:not(:first-of-type) {
  margin-top: 0.75rem;
}

.site-footer {
  padding: 2.5rem 1.75rem 3rem;
  border-top: 1px solid rgba(31, 20, 0, 0.18);
  background: rgba(11, 11, 15, 0.85);
  color: rgba(255, 255, 255, 0.85);
  margin-top: auto;
}

.footer-inner {
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-wrapper {
  display: grid;
  gap: 0.75rem;
  text-align: right;
}

.cta-section {
  justify-items: center;
}

.cta-section .cta-wrapper {
  text-align: center;
  justify-items: center;
}

.cta-note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: #ff3b3f;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(255, 59, 63, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: #ff595d;
  box-shadow: 0 24px 54px rgba(255, 59, 63, 0.32);
}

.ask-future-cta {
  margin-top: clamp(2rem, 6vw, 3rem);
  text-align: center;
}

.ask-future-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2f1419;
  background: #ffb6cf;
  box-shadow: 0 18px 34px -26px rgba(255, 166, 196, 0.48);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ask-future-button:hover {
  transform: translateY(-2px);
  background: #ffa2c2;
  box-shadow: 0 22px 40px -28px rgba(255, 166, 196, 0.58);
}

@media (max-width: 900px) {
  .overview-layout {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .page {
    padding: clamp(2.5rem, 8vw, 3.5rem) 1.5rem clamp(4rem, 10vw, 5rem);
  }

  .hero {
    border-radius: 20px;
    padding: clamp(2.5rem, 8vw, 3.2rem);
  }

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

  .card {
    padding: 1.2rem 1.25rem;
  }

  .card-media {
    border-radius: 14px;
    max-height: 180px;
  }

  .cta {
    width: 100%;
  }

  .cta-wrapper {
    text-align: left;
  }

  .cta-section .cta-wrapper {
    text-align: center;
  }
}

@media (min-width: 901px) {
  .overview-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .overview-map {
    flex: 0 0 320px;
    max-width: 320px;
  }

  .overview-details {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .site-frame {
    display: grid;
    grid-template-columns: minmax(520px, 2fr) minmax(320px, 1fr);
    min-height: 100vh;
  }

  .content-column {
    grid-column: 1;
    grid-row: 1;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
  }

  .page {
    width: min(640px, 100%);
    margin: 0 auto;
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
  }

  .site-footer {
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero {
    grid-column: 2;
    grid-row: 1;
    position: sticky;
    top: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(3rem, 6vw, 4.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-title img {
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
