:root {
  --blue: #37589D;
  --blue-dark: #172f57;
  --blue-soft: #E5F4FD;
  --red: #E83820;
  --ink: #171717;
  --muted: #5d6470;
  --paper: #fffdf7;
  --cream: #FFFDE7;
  --line: rgba(23, 47, 87, 0.14);
  --shadow: 0 18px 45px rgba(23, 47, 87, 0.16);
  --site-max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.75;
  background:
    linear-gradient(135deg, rgba(229, 244, 253, 0.9) 0 24rem, transparent 24rem),
    var(--paper);
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  padding-block: 0.75rem;
  padding-inline: max(clamp(1rem, 4vw, 3rem), calc((100% - var(--site-max)) / 2));
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(12rem, 22vw, 22rem);
  height: auto;
}

.nav {
  display: flex;
  gap: 1.15rem;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.header-cta,
.button,
.floating-cta {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.header-cta {
 padding: 0.65rem 1rem;
  min-width: 10.6rem;
  min-height: 3.75rem;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.8rem 1.15rem 0.75rem;
  color: #fff;
  text-align: center;
  background: var(--red);
}

.header-cta__main,
.header-cta__sub {
  display: block;
}

.header-cta__main {
  font-size: 1.08rem;
  line-height: 1.05;
}

.header-cta__sub {
  font-size: 0.64rem;
  line-height: 1.15;
  white-space: nowrap;
  opacity: 0.95;
}



.hero {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.hero__mv,
.hero__mv img {
  display: block;
  width: 100%;
}

.hero__mv img {
  height: auto;
}

.eyebrow,
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.eyebrow::before,
.section__label::before {
  content: "";
  width: 2.2rem;
  height: 0.28rem;
  background: var(--red);
}

h1,
h2 {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 950;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 6.4rem);
}

h1 span,
h1 strong {
  display: block;
}

h1 .hero-title__sub {
  max-width: 38rem;
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 3.3vw, 3rem);
  line-height: 1.22;
}

h1 strong {
  margin-top: 0.6rem;
  color: var(--red);
  font-size: clamp(2.75rem, 7vw, 6.4rem);
}

.hero-main-line {
  display: block;
  white-space: nowrap;
}

.hero-main-prefix {
  display: inline;
  margin-right: 0.08em;
  color: var(--blue-dark);
  font-size: 0.47em;
  line-height: 1;
  vertical-align: baseline;
  -webkit-text-emphasis: none;
  text-emphasis: none;
}

.emphasis-dots {
  display: inline;
  -webkit-text-emphasis: filled dot var(--red);
  text-emphasis: filled dot var(--red);
  -webkit-text-emphasis-position: over;
  text-emphasis-position: over;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.hero__lead {
  max-width: 43rem;
  margin: 1.35rem 0 0;
  color: #333946;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  max-width: 40rem;
  margin-top: 1rem;
}

.hero__quick-links a {
  color: var(--blue-dark);
  border-bottom: 2px solid rgba(52, 85, 137, 0.25);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.6;
}

.hero__quick-links a::after {
  content: "↓";
  margin-left: 0.28rem;
  color: var(--red);
}

.button {
  padding: 0.95rem 1.35rem;
  border: 2px solid transparent;
}

.button--primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(223, 59, 49, 0.24);
}

.button--secondary {
  color: var(--blue-dark);
  background: #fff;
  border-color: var(--blue);
}

.hero__visual {
  justify-self: center;
  width: min(100%, 27rem);
  transform: rotate(1.5deg);
}

.hero__visual img {
  width: 100%;
  height: auto;
  border: 0;
  box-shadow: none;
}

.section {
  width: min(100%, calc(var(--site-max) + 2rem));
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 7rem) 1rem;
}

.intro {
  width: 100%;
  max-width: none;
  padding: clamp(5rem, 9vw, 8rem) 1rem clamp(6rem, 11vw, 9rem);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.66)),
    url("assets/intro-bg-pc.png") center bottom / cover no-repeat;
}

.intro__grid,
.promise__inner,
.profile,
.supporters {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.7rem, 5vw, 4rem);
  align-items: start;
}

.large {
  margin: 1rem 0 0;
  color: var(--red);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.45;
}

.intro__media {
  max-width: 42rem;
}

.intro__grid {
  width: min(100%, calc(var(--site-max) + 2rem));
  margin-inline: auto;
}

.intro-title > span {
  display: table;
  margin: 0 0 0.75rem;
  padding: 0.03em 0.32em 0.07em;
  color: var(--blue);
  background: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

#intro-title span {
  display: block;
}

#intro-title .text-red {
  display: inline;
  padding: 0;
  color: var(--red);
  background: transparent;
}

#intro-title ruby,
#supporters-title ruby {
  ruby-position: over;
}

#intro-title rt,
#supporters-title rt {
  color: var(--blue);
  font-size: 0.24em;
  font-weight: 900;
  line-height: 1;
}


.sub-badge {
  display: inline-flex;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.6rem;
  color: #fff;
  background: var(--blue);
  border-radius: 0.25rem;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.3;
}

.prose p {
  margin: 0 0 1rem;
  color: #303845;
  font-size: 1.05rem;
  font-weight: 650;
}

.photo-story {
  display: grid;
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.12fr);
  gap: clamp(1.25rem, 3.5vw, 3rem);
  align-items: center;
  width: min(100%, 68rem);
  margin-inline: auto;
  padding: clamp(2.4rem, 4vw, 4rem) 1rem;
  background: #fffdf7;
  overflow: hidden;
}

.photo-story__badge {
  display: inline-flex;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.6rem;
  color: #fff;
  background: var(--blue);
  border-radius: 0.25rem;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.3;
}

.photo-story__copy p {
  max-width: 32rem;
  margin: 1rem 0 0;
  color: #384150;
  font-size: 1.04rem;
  font-weight: 750;
}

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

.photo-story h2 span {
  display: block;
  white-space: nowrap;
}

.polaroids {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 3vw, 1.8rem);
  align-items: center;
  justify-self: center;
  width: min(100%, 43rem);
  min-height: 25rem;
}

.polaroid {
  margin: 0;
  padding: 0.75rem 0.75rem 2.8rem;
  background: #fff;
  border-radius: 0.28rem;
  box-shadow: 0 18px 42px rgba(23, 47, 87, 0.18);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--blue-soft);
}

.polaroid figcaption {
  margin-top: 0.75rem;
  color: var(--blue-dark);
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1.04rem);
  font-weight: 950;
  line-height: 1.35;
  text-align: center;
}

.polaroid--current {
  transform: rotate(-3deg) translateY(-0.6rem);
}

.polaroid--current img {
  object-position: 50% 38%;
}

.polaroid--past {
  transform: rotate(3deg) translateY(1.1rem);
}

.polaroid--past img {
  object-position: 45% 55%;
}

.video-placeholder {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 0 1rem clamp(2.8rem, 5vw, 4.5rem);
  background: #fffdf7;
}

.video-placeholder__frame {
  display: grid;
  width: 100%;
  place-items: center;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(55, 88, 157, 0.2);
  border-radius: 0.6rem;
  aspect-ratio: 9 / 16;
}

.video-placeholder__frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.promise {
  width: 100%;
  max-width: none;
  color: var(--blue-dark);
  background: var(--blue-soft);
  overflow: visible;
  margin-bottom: clamp(2.8rem, 5vw, 4.8rem);
}

.promise__inner {
  width: min(100%, calc(var(--site-max) + 2rem));
  margin-inline: auto;
  align-items: center;
}

.promise h2,
.promise .eyebrow,
.promise .prose p {
  color: var(--blue-dark);
}

.promise h2 span {
  display: block;
  white-space: nowrap;
}

.promise__image {
  display: block;
  position: relative;
  z-index: 1;
  width: min(74vw, 58rem);
  height: auto;
  margin: clamp(1.2rem, 2.4vw, 2rem) auto clamp(-4.8rem, -5vw, -2.8rem);
}

.promise .eyebrow::before {
  background: var(--red);
}

.button--light {
  color: var(--blue-dark);
  background: var(--cream);
}

.section-button {
  margin-top: 0.7rem;
}

.section-heading {
  max-width: 60rem;
  margin-bottom: 2rem;
}

#actions-title span {
  display: inline;
}

.section-note {
  max-width: 44rem;
  margin: 0.9rem 0 0;
  color: #384150;
  font-size: 0.98rem;
  font-weight: 750;
}

.policy-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: start;
}

.policy-column {
  display: grid;
  gap: 0.75rem;
}

.force-card,
.action-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 10px 28px rgba(23, 47, 87, 0.08);
}

.force-card {
  min-height: 17rem;
  padding: 1.05rem;
  border-top: 0.5rem solid var(--blue);
}

.policy-card-title {
  margin: -1.05rem -1.05rem 0.9rem;
  padding: 0.55rem 1rem;
  color: var(--ink);
  background: #FFF6AE;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.35;
}

.policy-column:nth-child(1) .force-card {
  border-top-color: #FFF6AE;
}

.policy-column:nth-child(2) .force-card {
  border-top-color: #C9E6E0;
}

.policy-column:nth-child(3) .force-card {
  border-top-color: #F9D2D4;
}

.policy-column:nth-child(4) .force-card {
  border-top-color: #E3EA8C;
}

.policy-column:nth-child(1) .policy-card-title {
  background: #FFF6AE;
}

.policy-column:nth-child(2) .policy-card-title {
  background: #C9E6E0;
}

.policy-column:nth-child(3) .policy-card-title {
  background: #F9D2D4;
}

.policy-column:nth-child(4) .policy-card-title {
  background: #E3EA8C;
}

.force-card p {
  margin: 0.9rem 0 0;
  color: #364052;
  font-weight: 700;
}

.from,
.to {
  display: block;
  font-weight: 950;
  line-height: 1.2;
}

.from {
  color: var(--muted);
}

.from::before {
  content: "❌ ";
  color: var(--red);
}

.to {
  color: var(--blue-dark);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.to::before {
  content: "○ ";
  color: var(--red);
}

.down-arrow {
  display: grid;
  width: auto;
  height: auto;
  place-items: center;
  justify-self: center;
  color: var(--blue-dark);
  background: transparent;
  border-radius: 0;
  font-size: 2.1rem;
  font-weight: 950;
  line-height: 0.9;
}

.action-list {
  padding: 1rem;
  border-top: 0.35rem solid var(--cream);
}

.policy-column:nth-child(1) .action-list {
  border-top-color: #FFF6AE;
}

.policy-column:nth-child(2) .action-list {
  border-top-color: #C9E6E0;
}

.policy-column:nth-child(3) .action-list {
  border-top-color: #F9D2D4;
}

.policy-column:nth-child(4) .action-list {
  border-top-color: #E3EA8C;
}

.action-list h3 {
  margin: 0 0 0.75rem;
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 950;
}

.action-list ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.action-list li {
  position: relative;
  padding-left: 1rem;
  color: #1f2937;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.5;
}

.action-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--red);
  border-radius: 50%;
}

.actions > .section-button {
  margin-top: 1.5rem;
}

.profile {
  background: #fffdf7;
}

.profile__intro {
  grid-column: 1;
  grid-row: 1 / span 3;
  position: sticky;
  top: 6rem;
  align-self: start;
}

.profile__intro img {
  width: min(20rem, 78vw);
  margin-top: 1.3rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.profile-facts {
  display: grid;
  gap: 0.45rem;
  width: min(22rem, 100%);
  margin: 1rem 0 0;
  padding: 1rem;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid rgba(55, 88, 157, 0.16);
  border-radius: 0.45rem;
  box-shadow: 0 10px 28px rgba(23, 47, 87, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
  list-style: none;
}

.profile-facts li {
  position: relative;
  padding-left: 0.9rem;
}

.profile-facts li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--red);
  border-radius: 50%;
}

.profile__intro h2 span,
.profile__intro h2 small {
  display: block;
}

.profile__intro h2 span {
  color: var(--blue-dark);
  font-size: clamp(2.45rem, 5.4vw, 5rem);
}

.profile__intro h2 small {
  margin-top: 0.3rem;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.8vw, 2.3rem);
}

.daily-activities {
  grid-column: 2;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: #FFFDE7;
  border: 1px solid rgba(52, 85, 137, 0.18);
  border-radius: 0.5rem;
  box-shadow: 0 14px 36px rgba(23, 47, 87, 0.08);
}

.daily-activities__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 950;
}

.daily-activities__label::before {
  content: "";
  width: 1.8rem;
  height: 0.18rem;
  background: var(--red);
}

.daily-activities h3 {
  margin: 0.35rem 0 1rem;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.25;
}

.activity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.activity-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(52, 85, 137, 0.16);
  border-radius: 0.5rem;
}

.activity-card--photo,
.activity-card--family {
  grid-column: auto;
}

.activity-card img {
  display: block;
  width: 100%;
  height: 10rem;
  object-fit: cover;
  object-position: center;
  border-radius: 0.35rem;
}

.activity-card--award img {
  object-position: 56% 24%;
}

.activity-card:nth-child(4) img {
  object-position: 50% 30%;
}

.activity-card img.activity-card__image--korea {
  height: 13.5rem;
  object-position: 50% 46%;
}

.activity-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 950;
}

.activity-card p {
  margin: 0.35rem 0 0;
  color: #384150;
  font-weight: 700;
  line-height: 1.65;
}

.photo-stack {
  position: relative;
  height: 10rem;
}

.photo-stack img {
  position: absolute;
  width: 56%;
  height: 8rem;
  object-fit: cover;
  padding: 0.35rem 0.35rem 0.9rem;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 10px 24px rgba(23, 47, 87, 0.16);
}

.photo-stack img:nth-child(1) {
  left: 0;
  top: 1.15rem;
  z-index: 2;
  transform: rotate(-5deg);
}

.photo-stack img:nth-child(2) {
  right: 0;
  top: 0.25rem;
  z-index: 3;
  object-position: center top;
  transform: rotate(2deg);
}

.activity-card--compact {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.activity-card--compact img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  background: #fff;
}

.activity-card--text {
  background: #fff;
}

.activity-mark {
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 1.6rem;
}

.timeline {
  grid-column: 2;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 1.15rem 1.2rem;
  background: #FFFDE7;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.timeline span {
  display: block;
  color: var(--blue-dark);
  font-weight: 950;
}

.timeline p {
  margin: 0.35rem 0 0;
  color: #384150;
  font-weight: 650;
}

.timeline-note-image {
  width: min(100%, 13rem);
  margin-top: 0.9rem;
  opacity: 0.92;
}

.timeline-note-image--wide {
  width: min(100%, 18rem);
}

.timeline-school {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.7rem 0.85rem;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid rgba(52, 85, 137, 0.28);
  border-left: 0.32rem solid var(--blue);
  border-radius: 0.35rem;
  font-weight: 900;
  line-height: 1.55;
}

.hand-note {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.12rem 0;
  color: var(--red);
  border-bottom: 2px solid rgba(223, 59, 49, 0.28);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

.profile__button {
  grid-column: 2;
  justify-self: start;
}

.supporters {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - var(--site-max)) / 2 + 1rem));
  grid-template-columns: minmax(0, 0.95fr) minmax(11rem, 0.34fr) minmax(0, 1.05fr);
  align-items: center;
  background: var(--blue-soft);
}

.supporters__copy {
  grid-column: 1;
  max-width: 42rem;
}

#supporters-title span {
  display: block;
  white-space: nowrap;
}

#supporters-title .supporters-title__lead {
  display: block;
  white-space: nowrap;
}

.supporters p {
  margin: 1.2rem 0 1.5rem;
  color: #2d3748;
  font-size: 1.08rem;
  font-weight: 700;
}

.voice-list {
  grid-column: 3;
  display: grid;
  gap: 0.9rem;
}

.voice-card {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  background: #fff;
  border-left: 0.45rem solid var(--blue);
  border-radius: 0.5rem;
  box-shadow: 0 10px 28px rgba(23, 47, 87, 0.08);
}

.voice-card img {
  width: 5.2rem;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  background: var(--blue-soft);
}

.voice-card p {
  margin: 0 0 0.55rem;
  color: #2d3748;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

.voice-card strong,
.voice-card span {
  display: block;
}

.voice-card strong {
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 950;
}

.voice-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.supporter-roster {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: stretch;
}

.supporter-roster__photos {
  position: relative;
  min-height: 15rem;
}

.supporter-roster__photos img {
  position: absolute;
  width: min(68%, 10.5rem);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border: 0.38rem solid #fff;
  border-radius: 0.25rem;
  box-shadow: 0 10px 24px rgba(23, 47, 87, 0.14);
}

.supporter-roster__photos img:first-child {
  top: 0.35rem;
  left: 0;
  transform: rotate(-4deg);
}

.supporter-roster__photos img:last-child {
  right: 0;
  bottom: 0.25rem;
  transform: rotate(4deg);
}

.supporters .voice-card {
  border-left: 0.45rem solid var(--blue) !important;
}

.office-contact {
  padding: clamp(3.2rem, 6vw, 5rem) 1rem;
  text-align: center;
  background: var(--paper);
  border-top: 0.35rem solid var(--blue-soft);
}

.office-contact h2 {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  line-height: 1.25;
}

.office-contact h2 span {
  display: inline;
}

.office-contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.office-contact__button {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.5rem;
  min-width: min(100%, 16rem);
  padding: 0.65rem 1rem;
  color: #fff;
  background: var(--blue);
  border-radius: 0.35rem;
  line-height: 1.15;
}

.office-contact__button span {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
  font-size: 0.42rem;
  font-weight: 900;
}

.office-contact__button svg {
  width: 0.92rem;
  height: 0.92rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.office-contact__button strong {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 950;
}

.office-contact__button small {
  grid-column: 2;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.office-contact__button--mail {
  grid-template-columns: auto 1fr;
  text-align: left;
}

.office-contact__sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 1.7rem);
  margin-top: clamp(1.6rem, 4vw, 2.5rem);
}

.office-contact__sns a {
  display: grid;
  width: clamp(3.4rem, 7vw, 4.2rem);
  aspect-ratio: 1;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(23, 47, 87, 0.1);
}

.office-contact__sns img {
  display: block;
  width: 58%;
  height: 58%;
  max-width: 2.4rem;
  max-height: 2.4rem;
  object-fit: contain;
}

.footer {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 1.1rem;
  padding: 1.6rem clamp(1rem, 5vw, 5rem) 5rem;
  color: #fff;
  text-align: center;
  background: var(--blue-dark);
}

.footer__contact {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}

.footer__links {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--cream);
  font-weight: 900;
}

.footer svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  min-width: 10.6rem;
  min-height: 3.75rem;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.8rem 1.15rem 0.75rem;
  color: #fff;
  text-align: center;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(23, 47, 87, 0.24);
}

.floating-cta__main,
.floating-cta__sub {
  display: block;
}

.floating-cta__main {
  font-size: 1.08rem;
  line-height: 1.05;
}

.floating-cta__sub {
  font-size: 0.64rem;
  line-height: 1.15;
  white-space: nowrap;
  opacity: 0.95;
}

@media (max-width: 1040px) {
  .policy-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro__grid,
  .photo-story,
  .promise__inner,
  .profile,
  .supporters {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding: 0;
  }

  .hero__visual {
    width: min(82vw, 23rem);
    transform: none;
  }

  .profile__intro {
    grid-column: 1;
    grid-row: auto;
    position: static;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .profile-facts {
    margin-inline: auto;
    text-align: left;
  }

  .daily-activities,
  .timeline {
    grid-column: 1;
  }

  .profile__button {
    grid-column: 1;
    justify-self: center;
  }

  .supporters__copy {
    grid-column: 1;
    order: 1;
  }

  .voice-list {
    grid-column: 1;
    order: 2;
  }

  .supporter-roster {
    grid-column: 1;
    grid-row: auto;
    order: 3;
    justify-self: center;
    width: min(22rem, 100%);
  }
}

@media (max-width: 620px) {
  body {
    line-height: 1.68;
  }

  .site-header {
    padding: 0.65rem 0.8rem;
  }

 .header-cta {
    min-height: 2.65rem;
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
    min-width: 8.25rem;
    min-height: 3.15rem;
    padding: 0.65rem 0.72rem 0.58rem;
  }

  .header-cta__main {
    font-size: 0.94rem;
  }

  .header-cta__sub {
    font-size: 0.54rem;
  }

  .brand img {
    width: min(12.8rem, 56vw);
  }

  .hero {
    padding: 0;
  }

  .intro {
    padding: 3.2rem 1rem 8rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
      url("assets/intro-bg-sp.png") center bottom / cover no-repeat;
  }

  .intro__grid {
    gap: 1.4rem;
  }

  .intro .prose {
    padding-inline: 0.5rem;
  }

  .intro__media {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .intro-title > span {
    margin-bottom: 0.55rem;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .intro .large {
    font-size: 1.15rem;
  }

  .intro .section-button {
    display: table;
    margin-inline: auto;
  }

  .hero h1 {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
  }

  h1 .hero-title__sub {
    font-size: clamp(1.05rem, 5.2vw, 1.45rem);
  }

  h1 strong {
    font-size: clamp(1.95rem, 10.5vw, 3.1rem);
    line-height: 1.06;
  }

  .hero__visual {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: end;
    width: 100%;
  }

  .hero__lead,
  .hero__actions,
  .hero__quick-links {
    grid-column: 1 / -1;
  }

  .hero__lead {
    margin-top: 0.8rem;
  }

  .hero__actions {
    margin-top: 1.2rem;
  }

  .hero__quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.75rem;
    margin-top: 0.75rem;
  }

  .hero__quick-links a {
    font-size: 0.86rem;
  }

  .photo-story {
    padding-block: 3rem 4.5rem;
  }

  .photo-story__copy {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .photo-story h2 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  .promise__inner > div:first-child {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .promise h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .promise .eyebrow {
    justify-content: center;
  }

  .promise {
    padding-inline: 1.5rem;
    margin-bottom: 3rem;
  }

  .promise__image {
    width: min(96%, 30rem);
    margin-top: 1.3rem;
    margin-bottom: -2.8rem;
  }

  .polaroids {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    min-height: 0;
  }

  .polaroid {
    max-width: none;
    padding: 0.35rem 0.35rem 1.45rem;
  }

  .polaroid figcaption {
    margin-top: 0.45rem;
    font-size: clamp(0.62rem, 2.8vw, 0.78rem);
    line-height: 1.25;
  }

  .polaroid--current {
    transform: rotate(-2deg) translateY(-0.2rem);
  }

  .polaroid--past {
    transform: rotate(2deg) translateY(0.45rem);
  }

  .policy-board {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  #actions-title span {
    display: block;
    font-size: clamp(1.9rem, 8.5vw, 2.75rem);
    white-space: nowrap;
  }

  #supporters-title {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
  }

  #supporters-title .supporters-title__lead span {
    display: inline;
  }

  .office-contact h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .office-contact h2 span {
    display: block;
    white-space: nowrap;
  }

  .policy-column {
    gap: 0.65rem;
  }

  .force-card {
    min-height: 0;
  }

  .down-arrow {
    margin: 0;
  }

  .action-list {
    margin-top: 0.1rem;
  }

  .daily-activities {
    padding: 0.95rem;
  }

  .daily-activities h3 {
    font-size: 1.35rem;
  }

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

  .activity-card,
  .activity-card--compact {
    grid-template-columns: 1fr;
  }

  .activity-card img {
    height: 11rem;
  }

  .activity-card img.activity-card__image--korea {
    height: 21rem;
    object-position: 50% 49%;
  }

  .photo-stack {
    height: 12.6rem;
  }

  .photo-stack img {
    height: 8.9rem;
  }

  .floating-cta {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    width: auto;
  }

  .voice-card {
    grid-template-columns: 4.4rem 1fr;
  }

  .voice-card img {
    width: 4.4rem;
  }

  .supporter-roster {
    margin-top: 0.2rem;
  }

  .supporter-roster__photos {
    min-height: 13rem;
  }

  .supporter-roster__photos img {
    width: min(54%, 10rem);
  }
}

@media (max-width: 640px) {
  .video-placeholder {
    width: min(calc(100% - 2rem), 24rem);
    padding-inline: 0;
  }

  .video-placeholder__frame {
    max-height: none;
  }

  .office-contact__sns {
    gap: 0.85rem;
    margin-top: 1.35rem;
  }

  .office-contact__sns a {
    width: 3rem;
    max-width: 3rem;
  }

  .office-contact__sns img {
    width: 1.9rem;
    height: 1.9rem;
    max-width: 1.9rem;
    max-height: 1.9rem;
  }

  #supporters-title .supporters-title__lead {
    display: block;
    white-space: nowrap;
  }

  #supporters-title .supporters-title__lead span {
    display: inline;
  }

  #supporters-title > span:last-child {
    display: block;
    white-space: nowrap;
  }
}
