:root {
  --blue: #2098c5;
  --blue-deep: #107da7;
  --blue-soft: #e8f7fc;
  --yellow: #ffd73b;
  --yellow-soft: #fff6c8;
  --ink: #111416;
  --text: #4c5961;
  --muted: #7b8a92;
  --line: #dcecf2;
  --white: #ffffff;
  --shadow: 0 16px 38px rgba(39, 85, 105, 0.12);
  --font-ja: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --font-en: "Avenir Next", "Outfit", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-ja);
  font-size: 15px;
  line-height: 1.9;
  overflow-x: hidden;
}

body::before {
  position: absolute;
  inset: 620px 0 auto;
  z-index: -1;
  height: 320px;
  content: "";
  background: radial-gradient(120% 100% at 4% 0%, #dff4fb 0 42%, transparent 43%);
  opacity: 0.9;
}

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

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

h1,
h2,
h3,
p,
a,
summary {
  margin-top: 0;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 15px clamp(24px, 4.5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 205px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 54px);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.26fr);
  align-items: center;
  min-height: 650px;
  padding: 28px clamp(24px, 5.8vw, 92px) 96px;
}

.hero::after {
  position: absolute;
  right: -6vw;
  bottom: 0;
  left: -6vw;
  z-index: -1;
  height: 220px;
  content: "";
  background: var(--blue-soft);
  clip-path: ellipse(62% 42% at 54% 100%);
}

.hero-copy {
  z-index: 2;
  max-width: 560px;
}

.hero h1 {
  margin-bottom: 26px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--blue);
  font-family: var(--font-ja);
  font-weight: 900;
}

.hero-copy p {
  max-width: 480px;
  margin-bottom: 28px;
  color: #23282b;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 54px;
  padding: 13px 25px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(25, 137, 180, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button::after,
.outline-link::after,
.image-card a::after {
  content: "→";
  margin-left: 12px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(25, 137, 180, 0.2);
}

.button-blue {
  color: var(--white);
  background: var(--blue);
}

.button-yellow {
  color: #1c1b12;
  background: var(--yellow);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  margin-right: calc(clamp(24px, 5.8vw, 92px) * -1);
  overflow: hidden;
  border-bottom-left-radius: 180px;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.74) 4%, rgba(255, 255, 255, 0) 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 82%, var(--blue-soft) 100%);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.hero-slider {
  position: absolute;
  right: clamp(24px, 5vw, 78px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 150px) 54px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-slider article {
  position: relative;
  height: 76px;
  overflow: hidden;
  border-radius: 12px;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider span {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 8px 8px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.56));
  font-size: 13px;
  font-weight: 900;
}

.hero-slider button,
.round-nav {
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.section-wave,
.section-band,
.reports,
.news-faq {
  max-width: 1360px;
  margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 76px);
}

.section-label h2 {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: clamp(44px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.section-label h2::after {
  width: 26px;
  height: 26px;
  margin-left: 4px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}

.section-label p {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.about {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 36px 54px;
  align-items: start;
}

.about-lead {
  max-width: 760px;
  color: var(--text);
  font-weight: 700;
}

.about-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0 42px 0 42px;
  box-shadow: var(--shadow);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  min-height: 210px;
  padding: 31px 30px 28px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(44, 92, 112, 0.08);
}

.icon,
.card-icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  color: var(--blue);
  --icon-url: url("./assets/icons/flat.svg");
}

.icon::before,
.card-icon::before {
  position: absolute;
  inset: 8px;
  content: "";
  background: var(--icon-url) center / contain no-repeat;
}

.people {
  --icon-url: url("./assets/icons/flat.svg");
}

.heart {
  --icon-url: url("./assets/icons/peace-of-mind.svg");
}

.handshake {
  --icon-url: url("./assets/icons/sincerity.svg");
}

.mission {
  --icon-url: url("./assets/icons/mission.svg");
}

.vision {
  --icon-url: url("./assets/icons/vision.svg");
}

.value {
  --icon-url: url("./assets/icons/value.svg");
}

.connection {
  --icon-url: url("./assets/icons/connection.svg");
}

.value-card h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.25;
}

.value-card p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.section-band {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 36px 54px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.image-card,
.report-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.card-icon {
  position: absolute;
  top: 146px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0;
  background: var(--blue);
  border: 4px solid var(--white);
  border-radius: 50%;
}

.card-icon::before {
  inset: 13px;
  filter: brightness(0) invert(1);
}

.leaf {
  --icon-url: url("./assets/icons/environment.svg");
}

.house {
  --icon-url: url("./assets/icons/disaster-support.svg");
}

.care {
  --icon-url: url("./assets/icons/elderly-support.svg");
}

.card-body {
  padding: 34px 26px 26px;
}

.card-body h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.35;
}

.card-body p {
  margin-bottom: 13px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.card-body a,
.outline-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
}

.reports {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px 54px;
  border-top: 1px solid var(--line);
}

.reports .outline-link,
.news-block .outline-link {
  min-height: 38px;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 999px;
}

.report-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.report-row .round-nav {
  position: absolute;
  top: 48%;
  z-index: 2;
  width: 36px;
  height: 36px;
  font-size: 24px;
}

.report-row .round-nav:first-child {
  left: -46px;
}

.report-row .round-nav:last-child {
  right: -46px;
}

.report-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.report-card span {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 54px;
  padding: 3px 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.report-card time {
  display: block;
  margin: 15px 18px 3px;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
}

.report-card h3 {
  margin: 0 18px 22px;
  font-size: 16px;
  line-height: 1.55;
}

.transparency {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 28px;
  max-width: 1360px;
  margin: 18px auto 0;
  padding: 30px clamp(24px, 5vw, 76px);
  background: var(--blue-soft);
  border: 12px solid var(--white);
  border-radius: 28px;
  box-shadow: 0 0 0 1px var(--line), var(--shadow);
}

.transparency-copy h2 {
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 26px;
  line-height: 1.35;
}

.transparency-copy p {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--white);
  border-radius: 18px;
}

.stats article {
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.stats strong {
  display: block;
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1.1;
}

.stats strong span {
  font-size: 18px;
}

.stats p {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.news-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.section-label.small h2 {
  font-size: 42px;
}

.section-label.small h2::after {
  width: 18px;
  height: 18px;
}

.news-list {
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--muted);
  font-family: var(--font-en);
  font-weight: 700;
}

.news-list span {
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

summary {
  position: relative;
  min-height: 42px;
  padding: 8px 52px 8px 22px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--blue-deep);
  content: "+";
  font-size: 22px;
  transform: translateY(-50%);
}

details[open] {
  border-radius: 18px;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--text);
  font-weight: 700;
}

.cta {
  position: relative;
  max-width: 1250px;
  min-height: 220px;
  margin: 0 auto 36px;
  overflow: hidden;
  color: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(13, 49, 46, 0.76), rgba(13, 49, 46, 0.18));
}

.cta img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.cta > div {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  max-width: 650px;
  padding: 34px 56px;
}

.cta h2 {
  margin-bottom: 8px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.28;
}

.cta p {
  margin-bottom: 20px;
  font-weight: 800;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) 2fr auto;
  gap: 36px;
  align-items: start;
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px clamp(24px, 5vw, 76px) 42px;
}

.footer-brand img {
  width: 178px;
  margin-bottom: 12px;
}

.footer-brand p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  gap: 16px 34px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.site-footer small {
  align-self: end;
  color: var(--muted);
  font-size: 12px;
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: 24px;
  font-weight: 900;
}

.site-nav a.is-active {
  color: var(--blue-deep);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.sub-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  min-height: 500px;
  padding: 24px clamp(24px, 5.8vw, 92px) 86px;
  overflow: hidden;
}

.sub-hero::after {
  position: absolute;
  right: -8vw;
  bottom: 0;
  left: -8vw;
  z-index: -1;
  height: 190px;
  content: "";
  background: var(--blue-soft);
  clip-path: ellipse(64% 44% at 54% 100%);
}

.sub-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.sub-hero h1 {
  margin-bottom: 18px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(54px, 6.3vw, 92px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.sub-hero h1 span {
  color: var(--blue);
  font-family: var(--font-ja);
  font-weight: 900;
}

.reports-hero {
  grid-template-columns: minmax(460px, 0.82fr) minmax(520px, 1.18fr);
}

.about-page-hero .sub-hero-copy {
  max-width: 720px;
}

.about-page-hero h1 {
  font-size: clamp(54px, 5.1vw, 78px);
  white-space: nowrap;
}

.reports-hero .sub-hero-copy {
  max-width: 660px;
}

.reports-hero h1 {
  font-size: clamp(54px, 5.4vw, 76px);
  white-space: nowrap;
}

.contact-hero h1 {
  font-size: clamp(54px, 5.2vw, 78px);
  white-space: nowrap;
}

.sub-kicker {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 800;
}

.sub-kicker.blue {
  color: var(--blue-deep);
}

.sub-hero-copy p:not(.sub-kicker) {
  max-width: 440px;
  color: #23282b;
  font-weight: 700;
}

.sub-hero-photo {
  position: relative;
  align-self: stretch;
  min-height: 430px;
  margin-right: calc(clamp(24px, 5.8vw, 92px) * -1);
  overflow: hidden;
  border-bottom-left-radius: 150px;
}

.sub-hero-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.78) 5%, rgba(255, 255, 255, 0) 17%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 78%, var(--blue-soft) 100%);
}

.sub-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.sub-section,
.featured-report,
.report-layout,
.page-cta {
  max-width: 1250px;
  margin: 0 auto;
  padding: 56px clamp(24px, 5vw, 76px);
}

.section-title {
  margin-bottom: 28px;
}

.section-title.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.section-title h2 {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.18;
}

.section-title h2::after {
  width: 18px;
  height: 18px;
  margin-left: 6px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}

.section-title p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--text);
  font-weight: 700;
}

.section-title.small {
  margin-bottom: 18px;
}

.section-title.small h2 {
  font-size: 30px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: center;
}

.mini-values,
.value-mosaic,
.category-grid,
.contact-cards,
.support-grid {
  display: grid;
  gap: 22px;
}

.mini-values {
  grid-template-columns: repeat(3, 1fr);
}

.mini-values article,
.value-mosaic article,
.soft-card,
.contact-form,
.contact-cards article,
.faq-contact-card,
.faq-group,
.support-panel,
.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(39, 85, 105, 0.08);
}

.mini-values article,
.value-mosaic article {
  padding: 28px 24px;
  text-align: center;
}

.mini-values h3,
.value-mosaic h3,
.contact-cards h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.35;
}

.mini-values p,
.value-mosaic p {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 700;
}

.two-column,
.split-panel,
.contact-layout,
.report-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.soft-card {
  padding: 32px;
}

.message-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.message-layout img {
  width: 150px;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
}

.message-layout h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.45;
}

.message-layout p {
  color: var(--text);
  font-weight: 700;
}

.signature {
  margin-bottom: 0;
  text-align: right;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--blue-deep);
  font-weight: 900;
}

.timeline span {
  color: var(--text);
  font-weight: 700;
}

.info-table {
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(39, 85, 105, 0.08);
}

.info-table th,
.info-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 140px;
  background: var(--blue-soft);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.value-mosaic {
  grid-template-columns: repeat(2, 1fr);
}

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

.flow-section {
  padding-top: 28px;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.step-row article {
  position: relative;
  min-height: 150px;
  padding: 24px 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(39, 85, 105, 0.06);
}

.step-row span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 900;
}

.step-row h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.step-row p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.japan-map {
  display: grid;
  place-items: center;
  min-height: 300px;
  color: var(--blue-deep);
  background:
    radial-gradient(circle at 66% 18%, rgba(32, 152, 197, 0.26) 0 9%, transparent 10%),
    radial-gradient(circle at 52% 43%, rgba(32, 152, 197, 0.24) 0 8%, transparent 9%),
    radial-gradient(circle at 35% 61%, rgba(32, 152, 197, 0.24) 0 10%, transparent 11%),
    var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.stats.compact {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: transparent;
}

.stats.compact article {
  min-height: 120px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.page-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 34px;
  padding-top: 28px;
  padding-bottom: 28px;
  overflow: hidden;
  background: var(--blue-soft);
  border-radius: 24px;
}

.page-cta.dark {
  color: var(--white);
  background: #173c3b;
}

.page-cta img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
}

.page-cta.dark::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(14, 43, 39, 0.82), rgba(14, 43, 39, 0.12));
  pointer-events: none;
}

.page-cta.dark > * {
  position: relative;
  z-index: 1;
}

.page-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.35;
}

.page-cta p {
  margin-bottom: 18px;
  color: inherit;
  font-weight: 800;
}

.featured-report {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
  margin-top: -34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.featured-report img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
}

.featured-report time,
.report-card time {
  display: block;
  color: var(--muted);
  font-family: var(--font-en);
  font-weight: 800;
}

.featured-report h2 {
  margin: 8px 0 12px;
  font-size: clamp(26px, 3vw, 38px);
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.filter-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 22px;
  color: var(--blue-deep);
  border-radius: 999px;
  font-weight: 900;
}

.filter-tabs a.active {
  color: var(--white);
  background: var(--blue);
}

.report-layout {
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 30px;
}

.report-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.report-list-grid .report-card {
  border-radius: 16px;
}

.report-list-grid .report-card img {
  height: 170px;
}

.report-list-grid .report-card h3,
.report-list-grid .report-card p,
.report-list-grid .report-card a,
.report-list-grid .report-card time {
  margin-right: 18px;
  margin-left: 18px;
}

.report-list-grid .report-card p {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.report-list-grid .report-card a {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue-deep);
  font-weight: 900;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.pagination a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 900;
}

.pagination a.active {
  color: var(--white);
  background: var(--blue);
}

.report-sidebar {
  display: grid;
  gap: 24px;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.summary-list span {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  color: var(--blue-deep);
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.soft-card.blue {
  background: var(--blue-soft);
}

.faq-layout {
  grid-template-columns: minmax(0, 1fr) 310px;
}

.faq-groups {
  display: grid;
  gap: 16px;
}

.faq-group {
  padding: 0;
  overflow: hidden;
}

.faq-group h3 {
  margin: 0;
  padding: 22px 26px;
  color: var(--blue-deep);
  border-bottom: 1px solid var(--line);
  font-size: 21px;
}

.faq-group details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.faq-group details:last-child {
  border-bottom: 0;
}

.faq-contact-card {
  position: sticky;
  top: 96px;
  padding: 32px 26px;
  text-align: center;
}

.keyword-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  background: var(--blue-soft);
  border-radius: 16px;
}

.keyword-box span {
  padding: 5px 10px;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.contact-form label span {
  justify-self: start;
  padding: 1px 7px;
  color: #e25555;
  border: 1px solid #ffb7b7;
  border-radius: 4px;
  font-size: 11px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.check-label {
  display: flex !important;
  grid-template-columns: none;
  gap: 10px !important;
  align-items: center;
  color: var(--text);
  font-size: 14px;
}

.check-label input {
  width: 20px;
  min-height: 20px;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.contact-cards {
  grid-template-columns: repeat(2, 1fr);
}

.contact-cards article {
  padding: 26px;
  text-align: center;
}

.contact-cards strong {
  display: block;
  color: var(--blue-deep);
  font-size: 22px;
}

.contact-cards p {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 700;
}

.contact-cards a {
  color: var(--blue-deep);
  font-weight: 900;
}

.map-card {
  min-height: 230px;
  margin-top: 20px;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.55)),
    repeating-linear-gradient(24deg, #d8ecf5 0 2px, transparent 2px 24px),
    var(--blue-soft);
}

.map-card span {
  display: inline-flex;
  padding: 6px 12px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.map-card strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
}

.contact-faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-faq-list a {
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 900;
}

.support-panel {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  align-items: end;
  background: var(--blue-soft);
}

.support-panel h2 {
  color: var(--blue-deep);
  font-size: 34px;
}

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

.support-grid article {
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
}

.support-panel img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}

.phone {
  --icon-url: url("./assets/icons/phone.svg");
}

.mail {
  --icon-url: url("./assets/icons/email.svg");
}

.clock {
  --icon-url: url("./assets/icons/office-hours.svg");
}

.pin {
  --icon-url: url("./assets/icons/access.svg");
}

.note {
  --icon-url: url("./assets/icons/document-request.svg");
}

.globe {
  --icon-url: url("./assets/icons/international-support.svg");
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 74px;
  }

  .hero-copy {
    max-width: 720px;
    padding-top: 26px;
  }

  .hero-visual {
    min-height: 430px;
    margin: 16px 0 0;
    border-radius: 28px 28px 90px 28px;
  }

  .hero-visual > img {
    min-height: 430px;
  }

  .about,
  .section-band,
  .reports,
  .transparency {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .activity-grid,
  .report-row,
  .stats,
  .news-faq {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-row .round-nav {
    display: none;
  }

  .site-footer,
  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .sub-hero,
  .about-intro,
  .two-column,
  .split-panel,
  .featured-report,
  .report-layout,
  .faq-layout,
  .contact-layout,
  .page-cta,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .reports-hero {
    grid-template-columns: 1fr;
  }

  .reports-hero h1 {
    white-space: normal;
  }

  .about-page-hero h1 {
    white-space: normal;
  }

  .sub-hero-photo {
    margin: 12px 0 0;
    border-radius: 28px 28px 90px 28px;
  }

  .mini-values,
  .category-grid,
  .report-list-grid,
  .contact-cards,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .faq-contact-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 12px 18px;
  }

  .brand img {
    width: 166px;
  }

  .nav-toggle {
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: auto;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    inset: 66px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 28px 18px 64px;
  }

  .hero-copy,
  .about .section-label,
  .about-lead,
  .about-photo,
  .value-grid,
  .activity .section-label,
  .activity-grid,
  .reports .section-label,
  .report-row,
  .news-block,
  .faq-block {
    width: min(100%, 354px);
    max-width: 354px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.8vw, 52px);
    line-height: 1.16;
  }

  .hero-copy p {
    font-size: 14px;
    max-width: 100%;
    word-break: break-all;
  }

  .about-lead p,
  .value-card p,
  .card-body p,
  .news-list span,
  details p {
    word-break: break-all;
  }

  .button {
    min-width: min(100%, 240px);
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-visual > img {
    min-height: 320px;
  }

  .hero-slider {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr 1fr 44px;
  }

  .hero-slider article {
    height: 62px;
  }

  .section-wave,
  .section-band,
  .reports,
  .news-faq {
    padding: 56px 18px;
  }

  .section-label h2 {
    font-size: 42px;
  }

  .value-grid,
  .activity-grid,
  .report-row,
  .stats,
  .news-faq {
    grid-template-columns: 1fr;
  }

  .transparency {
    margin: 0 18px;
    padding: 22px;
    border-width: 6px;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .news-list a {
    grid-template-columns: 1fr;
    gap: 0;
  }

  details {
    border-radius: 18px;
  }

  .cta {
    margin: 8px 18px 26px;
  }

  .cta img {
    height: 440px;
  }

  .cta::after {
    background: linear-gradient(180deg, rgba(13, 49, 46, 0.22), rgba(13, 49, 46, 0.8));
  }

  .cta > div {
    align-content: end;
    padding: 28px 22px;
  }

  .to-top {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .sub-hero {
    min-height: 0;
    padding: 30px 18px 64px;
  }

  .sub-hero h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .sub-hero-copy,
  .sub-hero-photo,
  .sub-section,
  .featured-report,
  .report-layout,
  .page-cta {
    width: min(100%, 354px);
    max-width: 354px;
  }

  .sub-hero-photo,
  .sub-hero-photo img {
    min-height: 310px;
  }

  .sub-section,
  .featured-report,
  .report-layout,
  .page-cta {
    padding: 44px 18px;
  }

  .section-title.row {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-values,
  .category-grid,
  .report-list-grid,
  .contact-cards,
  .contact-faq-list,
  .support-grid,
  .value-mosaic,
  .step-row,
  .stats.compact {
    grid-template-columns: 1fr;
  }

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

  .timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .faq-group h3 {
    border-bottom: 1px solid var(--line);
  }

  .contact-form {
    position: relative;
    left: auto;
    width: calc(100vw - 36px);
    min-width: 0;
    margin-left: -56px;
    padding: 24px;
    transform: none;
  }

  .contact-layout,
  .contact-form,
  .contact-side {
    min-width: 0;
  }

  .contact-layout.sub-section {
    width: 100%;
    max-width: 390px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-width: 0;
  }

  .support-panel img {
    display: none;
  }

  .page-cta img {
    height: 180px;
  }
}
