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

:root {
  --bg-top: #f7faff;
  --bg-bottom: #e7eef8;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(244, 248, 255, 0.86);
  --surface-strong: #ffffff;
  --ink: #12213b;
  --muted: #5a6b89;
  --line: rgba(30, 76, 148, 0.12);
  --accent: #1d4f95;
  --accent-strong: #143e78;
  --accent-soft: #6e98d6;
  --accent-pale: #dbe8ff;
  --navy: #10294d;
  --shadow: 0 30px 70px rgba(24, 58, 111, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(110, 152, 214, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(29, 79, 149, 0.14), transparent 26%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

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

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 16px auto;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header {
  padding: 28px;
}

.site-header-home {
  background:
    radial-gradient(circle at top right, rgba(219, 232, 255, 0.9), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 255, 0.94));
}

.site-header-page {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(241, 247, 255, 0.94)),
    linear-gradient(90deg, rgba(29, 79, 149, 0.04), transparent);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 46px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand-kicker,
.section-tag,
.eyebrow,
.panel-tag,
.visual-tag,
.news-date {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.72);
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 0.95;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.main-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(29, 79, 149, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
}

.main-nav a[aria-current="page"] {
  background: var(--accent);
  color: #f7fbff;
}

.hero-home,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy h1,
.page-hero-copy h1,
.section-head h2,
.youth-banner h2 {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.94;
}

.lead,
.section-head p,
.visual-content p,
.metric-label,
.feature-panel p,
.event-item p,
.news-body p,
.place-meta p,
.youth-banner p,
.spotlight-card p,
.step-card p,
.benefit-card p,
.detail-card p,
.site-footer p,
.hero-side-card p,
.table-note,
.schedule-table td {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  color: #f7fbff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
}

.button-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f7fbff;
}

.quick-strip,
.youth-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.quick-strip span,
.youth-points span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(29, 79, 149, 0.08);
  color: var(--accent);
  font-weight: 700;
}

.hero-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
}

.visual-card,
.metric-card,
.feature-panel,
.news-card,
.place-card,
.spotlight-card,
.step-card,
.benefit-card,
.detail-card,
.hero-side-card,
.callout-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(24, 58, 111, 0.08);
}

.visual-card-main {
  min-height: 420px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(16, 41, 77, 0.04), rgba(16, 41, 77, 0.28)),
    linear-gradient(160deg, #fefefe, #eef5ff);
}

.target-art {
  position: absolute;
  inset: 18px 18px auto auto;
  width: min(56%, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #173f79 0 12%, #ffffff 12% 20%, #3f71ba 20% 32%, #ffffff 32% 40%, #7fa4df 40% 54%, rgba(255, 255, 255, 0.92) 54% 72%, transparent 72% 100%);
  opacity: 0.95;
  filter: drop-shadow(0 16px 24px rgba(20, 52, 99, 0.14));
}

.target-art::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 78%;
  height: 2px;
  background: rgba(18, 33, 59, 0.18);
  transform: translate(-50%, -50%);
  box-shadow: 0 -80px 0 rgba(18, 33, 59, 0.04), 0 80px 0 rgba(18, 33, 59, 0.04);
}

.target-art::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 2px;
  height: 78%;
  background: rgba(18, 33, 59, 0.18);
  transform: translate(-50%, -50%);
}

.visual-content {
  position: relative;
  z-index: 1;
  width: min(72%, 420px);
}

.visual-content h2,
.feature-panel h3,
.news-body h3,
.place-meta h3,
.spotlight-card h3,
.step-card h3,
.benefit-card h3,
.detail-card h3,
.hero-side-card h3,
.callout-card h3 {
  margin: 10px 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.visual-card-side,
.hero-side-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.95));
}

.section {
  padding: 32px 28px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(243, 248, 255, 0.84), rgba(234, 242, 252, 0.66));
}

.section-head {
  max-width: 760px;
}

.section-head-compact {
  max-width: 620px;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.metric-grid,
.spotlight-grid,
.step-grid,
.benefit-grid,
.detail-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

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

.metric-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
}

.metric-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.metric-label {
  display: block;
  margin-top: 12px;
}

.home-grid,
.split-layout,
.page-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.feature-panel {
  padding: 28px;
}

.feature-panel-primary {
  background:
    linear-gradient(180deg, rgba(16, 41, 77, 0.98), rgba(21, 58, 107, 0.96));
  color: #f7fbff;
}

.feature-panel-primary .panel-tag,
.feature-panel-primary p,
.feature-panel-primary .event-item p,
.feature-panel-primary .text-link {
  color: rgba(247, 251, 255, 0.8);
}

.feature-panel-primary h3,
.feature-panel-primary h4 {
  color: #f7fbff;
}

.panel-heading {
  margin-bottom: 20px;
}

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

.event-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.event-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.event-item h4 {
  margin: 0;
  font-size: 1.02rem;
}

.event-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f7fbff;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
  color: var(--accent);
}

.news-stack {
  display: grid;
  gap: 18px;
}

.news-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 200px;
}

.news-art {
  position: relative;
  overflow: hidden;
}

.news-art-one {
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.8), transparent 16%),
    linear-gradient(160deg, #19427c, #7fa6e0);
}

.news-art-one::after,
.news-art-two::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.news-art-two {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.7), transparent 18%),
    linear-gradient(160deg, #6f95d1, #dbe8ff);
}

.news-body {
  padding: 24px;
}

.split-layout {
  align-items: center;
}

.place-card {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.95));
}

.place-art {
  min-height: 280px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(17, 41, 78, 0.08), rgba(17, 41, 78, 0.02)),
    linear-gradient(155deg, #e8f0ff, #bdd4f7);
  position: relative;
}

.place-art::before {
  content: "";
  position: absolute;
  inset: auto 24px 28px 24px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 24px rgba(16, 41, 77, 0.08);
}

.place-art::after {
  content: "";
  position: absolute;
  inset: 24px auto auto 24px;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.place-meta {
  padding: 18px 8px 4px;
}

.place-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 79, 149, 0.08);
  color: var(--accent);
  font-weight: 700;
}

.section-youth-banner {
  padding-top: 8px;
}

.youth-banner {
  display: grid;
  gap: 20px;
  padding: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(145deg, #123261, #1f4f95);
  color: #f7fbff;
}

.youth-banner p {
  color: rgba(247, 251, 255, 0.8);
}

.page-hero-copy h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.9rem);
}

.page-side-card {
  padding: 24px;
}

.page-side-card-dark {
  background:
    linear-gradient(180deg, rgba(16, 41, 77, 0.98), rgba(25, 66, 124, 0.96));
  color: #f7fbff;
}

.page-side-card-dark p {
  color: rgba(247, 251, 255, 0.8);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  color: #f7fbff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
}

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

.spotlight-card,
.step-card,
.benefit-card,
.detail-card,
.callout-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
}

.spotlight-date {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 79, 149, 0.08);
  color: var(--accent);
  font-weight: 700;
}

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

.step-number,
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  color: #f7fbff;
  font-weight: 800;
}

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

.benefit-icon {
  font-size: 1.25rem;
}

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

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

.table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.schedule-table th {
  background: rgba(29, 79, 149, 0.08);
  color: var(--accent);
  font-size: 0.9rem;
}

.schedule-table tbody tr:last-child td {
  border-bottom: 0;
}

.callout-card {
  padding: 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px 34px;
  border-top: 1px solid var(--line);
  background: rgba(246, 250, 255, 0.84);
}

.footer-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: flex-start;
}

.footer-year {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hero-home,
  .page-hero,
  .home-grid,
  .split-layout,
  .page-section-grid,
  .spotlight-grid,
  .step-grid,
  .benefit-grid,
  .detail-grid,
  .detail-grid-two,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 14px, 100%);
    margin: 7px auto;
    border-radius: 22px;
  }

  .site-header,
  .section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    margin-bottom: 30px;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .section-head h2,
  .youth-banner h2 {
    font-size: clamp(2.15rem, 11vw, 3.6rem);
  }

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

  .news-art {
    min-height: 140px;
  }

  .visual-card-main {
    min-height: 340px;
  }

  .visual-content {
    width: 100%;
  }

  .target-art {
    width: 190px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 14px;
  }
}

.home-hero-simple {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.home-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(19, 44, 84, 0.08);
}

.home-hero-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  min-height: 460px;
  background: #d8e5f8;
  box-shadow: 0 18px 42px rgba(24, 58, 111, 0.1);
}

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

.metric-grid-home {
  margin-top: 0;
}

.home-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.home-story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(24, 58, 111, 0.08);
}

.home-story-media {
  min-height: 220px;
  background: #e8f0ff;
}

.home-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-story-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(110, 152, 214, 0.18), transparent 30%),
    linear-gradient(180deg, #f8fbff, #eef5ff);
}

.home-story-logo img {
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
}

.home-story-body {
  padding: 24px;
}

.story-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 79, 149, 0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.home-story-body h3,
.home-contact-card h3 {
  margin: 14px 0 0;
  font-size: 1.24rem;
  line-height: 1.25;
}

.home-story-body p,
.home-contact-card p,
.home-focus-card p {
  color: var(--muted);
  line-height: 1.72;
}

.home-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.home-focus-card,
.home-contact-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}

.home-focus-card {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, #123261, #1e4f93);
}

.home-focus-card h2 {
  margin: 12px 0 0;
  color: #f7fbff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.home-focus-card p,
.home-focus-card .section-tag {
  color: rgba(247, 251, 255, 0.82);
}

.home-contact-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(24, 58, 111, 0.08);
}

@media (max-width: 1024px) {
  .home-hero-simple,
  .home-story-grid,
  .home-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-hero-photo-card {
    min-height: 280px;
  }

  .home-story-media {
    min-height: 180px;
  }
}
