:root {
  --forest: #1f5a45;
  --forest-dark: #12362d;
  --river: #247b7b;
  --river-light: #d7eeea;
  --earth: #a55f3b;
  --sun: #d9a832;
  --leaf: #789b54;
  --paper: #fbf6e8;
  --surface: #fffdf7;
  --ink: #18342e;
  --muted: #596961;
  --line: #d8e2d8;
  --shadow: 0 18px 42px rgba(20, 55, 45, 0.14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

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

html {
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(217, 168, 50, 0.14), transparent 280px),
    linear-gradient(115deg, rgba(36, 123, 123, 0.08), transparent 48%),
    var(--paper);
  font-size: 16px;
  line-height: 1.5;
}

.campaign-page {
  padding-bottom: 76px;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(217, 168, 50, 0.78);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -90px;
  left: 16px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--forest-dark);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(240px, 1fr) minmax(0, auto);
  align-items: center;
  gap: 22px;
  padding: 14px max(18px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(31, 90, 69, 0.16);
  background: rgba(255, 253, 247, 0.93);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-dark);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand::before,
.brand-mark {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--sun) 0 24%, transparent 24% 36%, var(--river) 36% 64%, var(--forest) 64%),
    var(--leaf);
  box-shadow: inset 0 0 0 2px rgba(255, 253, 247, 0.7);
  content: "";
}

.brand-mark {
  display: inline-block;
}

.brand:has(.brand-mark)::before {
  content: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.site-nav a {
  padding: 8px 0;
  text-decoration: none;
}

.site-nav a:hover,
.material-card a:hover,
.topic-card:hover strong,
.topic-card:hover h3 {
  color: var(--earth);
}

.site-nav .survey-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(217, 168, 50, 0.72);
  border-radius: 999px;
  background: var(--sun);
  color: var(--forest-dark);
  box-shadow: 0 8px 18px rgba(217, 168, 50, 0.28);
  animation: survey-pulse 2.7s ease-in-out infinite;
}

.site-nav .survey-nav-link:hover {
  background: #e5b23a;
  color: var(--forest-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: var(--earth);
  color: white;
  box-shadow: 0 10px 24px rgba(165, 95, 59, 0.24);
}

.button-primary:hover {
  background: #8f4f31;
}

.button-secondary {
  border-color: rgba(31, 90, 69, 0.28);
  background: var(--surface);
  color: var(--forest-dark);
}

.button-secondary:hover {
  border-color: var(--river);
  color: var(--river);
}

.header-action {
  justify-self: end;
}

.floating-survey-cta {
  position: fixed;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 20px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: calc(100vw - 36px);
  padding: 12px 18px;
  border: 2px solid rgba(255, 253, 247, 0.9);
  border-radius: 999px;
  background: var(--sun);
  color: var(--forest-dark);
  box-shadow: 0 14px 30px rgba(18, 54, 45, 0.24);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  animation: survey-pulse 2.7s ease-in-out infinite;
}

.floating-survey-cta:hover {
  background: #e5b23a;
  color: var(--forest-dark);
}

@keyframes survey-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 30px rgba(18, 54, 45, 0.24);
  }

  50% {
    transform: translateY(-2px);
    box-shadow:
      0 18px 36px rgba(18, 54, 45, 0.28),
      0 0 0 7px rgba(217, 168, 50, 0.18);
  }
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: 44px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 62px 28px 46px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.topic-eyebrow,
.material-type {
  margin: 0 0 10px;
  color: var(--river);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--forest-dark);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 18px;
  font-size: 64px;
}

h2 {
  margin: 0;
  font-size: 42px;
}

h3 {
  margin: 0;
  font-size: 22px;
}

.hero-text,
.hero-copy > p:not(.eyebrow),
.section-heading p,
.topic-card p,
.topic-card span:last-child,
.material-card p,
.chapter-card p,
.about-copy p,
.participation-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-visual {
  position: relative;
  margin: 0;
  aspect-ratio: 1400 / 747;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 90, 69, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 238, 234, 0.86), rgba(255, 253, 247, 0.2)),
    var(--river-light);
  box-shadow: var(--shadow);
}

.hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1400 / 747;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1400 / 747;
  object-fit: contain;
}

.map-point-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.map-point {
  position: absolute;
  display: inline-grid;
  grid-template-columns: 14px max-content;
  align-items: center;
  gap: 7px;
  max-width: min(220px, 42%);
  color: var(--forest-dark);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
  transform: translate(-7px, -50%);
  pointer-events: auto;
}

.map-point:focus-visible {
  border-radius: 6px;
}

.map-point-dot {
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--earth);
  box-shadow: 0 3px 8px rgba(18, 54, 45, 0.22);
}

.map-point-label {
  display: block;
  max-width: 100%;
  padding: 5px 7px;
  border: 1px solid rgba(31, 90, 69, 0.22);
  border-radius: 6px;
  background: rgba(255, 253, 247, 0.9);
  overflow-wrap: break-word;
}

.category-anchor {
  position: relative;
  top: -84px;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 28px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 26px;
}

.section-heading p:not(.eyebrow) {
  margin: 12px 0 0;
}

.event-section {
  max-width: none;
  border-top: 1px solid rgba(31, 90, 69, 0.12);
  border-bottom: 1px solid rgba(31, 90, 69, 0.12);
  background:
    linear-gradient(180deg, rgba(217, 168, 50, 0.11), rgba(215, 238, 234, 0.26)),
    rgba(255, 253, 247, 0.72);
}

.event-section > .section-heading,
.event-section > [data-render="event-highlight"],
.event-section > .event-program-heading,
.event-section > .event-schedule {
  max-width: 1224px;
  margin-right: auto;
  margin-left: auto;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.82fr);
  gap: 24px;
  padding: 26px;
  border: 1px solid rgba(31, 90, 69, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
}

.event-feature-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.event-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--earth);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event-mini-seal {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid rgba(31, 90, 69, 0.16);
  border-radius: 50%;
  background: white;
  object-fit: contain;
}

.event-feature h3 {
  font-size: 34px;
}

.event-feature-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.event-feature-copy .event-subtitle {
  color: var(--forest-dark);
  font-weight: 850;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0;
}

.event-facts div {
  min-width: 0;
  padding-left: 12px;
  border-left: 4px solid var(--sun);
}

.event-facts dt {
  color: var(--earth);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 4px 0 0;
  color: var(--forest-dark);
  font-weight: 750;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  list-style: none;
}

.event-contact strong {
  color: var(--forest-dark);
}

.event-feature-visual {
  display: grid;
  place-items: center;
  min-width: 0;
  max-height: 640px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 90, 69, 0.14);
  border-radius: 8px;
  background: white;
  aspect-ratio: 1080 / 1350;
}

.event-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-program-heading {
  margin-top: 34px;
  margin-bottom: 18px;
}

.event-program-heading h3 {
  font-size: 28px;
}

.event-schedule {
  display: grid;
  gap: 14px;
}

.event-day {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(31, 90, 69, 0.15);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.92);
}

.event-day-heading {
  min-width: 0;
}

.event-day-heading span,
.event-time {
  color: var(--earth);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event-day-heading h4,
.event-activity h4 {
  margin: 0;
  color: var(--forest-dark);
  line-height: 1.18;
}

.event-day-heading h4 {
  margin-top: 6px;
  font-size: 20px;
}

.event-activity-list {
  display: grid;
}

.event-activity {
  display: grid;
  gap: 5px;
  padding: 12px 0;
  border-top: 1px solid rgba(31, 90, 69, 0.12);
}

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

.event-activity:last-child {
  padding-bottom: 0;
}

.event-time,
.event-meta,
.event-activity p {
  margin: 0;
}

.event-activity h4 {
  font-size: 18px;
}

.event-meta {
  color: var(--river);
  font-weight: 800;
}

.event-activity p:not(.event-time):not(.event-meta) {
  color: var(--muted);
}

.event-assets-block {
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid rgba(31, 90, 69, 0.16);
}

.event-assets-heading {
  margin-bottom: 16px;
}

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

.event-asset-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(31, 90, 69, 0.07);
}

.event-asset-card img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(31, 90, 69, 0.1);
  border-radius: 6px;
  background: white;
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.event-asset-card h3 {
  margin: 0 0 8px;
}

.event-asset-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.about-logos {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.about-seal-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(31, 90, 69, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
}

.about-stamp-seal {
  width: 250px;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.about-round-seal {
  width: 178px;
  max-width: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.logo-ruler {
  margin: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(31, 90, 69, 0.14);
  border-radius: 8px;
  background: white;
}

.logo-ruler img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.knowledge-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 8px 0;
}

.knowledge-map::before {
  position: absolute;
  top: 50%;
  right: 5%;
  left: 5%;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(36, 123, 123, 0.34), rgba(120, 155, 84, 0.28), transparent);
  content: "";
  transform: rotate(-3deg);
}

.topic-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 184px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 12px 26px rgba(31, 90, 69, 0.08);
  text-decoration: none;
}

.topic-card strong,
.topic-card h3 {
  color: var(--forest-dark);
  font-size: 23px;
  line-height: 1.12;
}

.topic-card .eyebrow,
.topic-eyebrow {
  color: var(--earth);
}

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

.material-card {
  display: flex;
  flex-direction: column;
  min-height: 252px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(31, 90, 69, 0.07);
}

.material-card .eyebrow,
.material-type {
  color: var(--earth);
}

.material-card h3 {
  margin: 0 0 8px;
}

.material-card footer,
.material-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.material-card footer a,
.material-footer a {
  color: var(--forest-dark);
  font-weight: 850;
}

.magazine-section {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(36, 123, 123, 0.09), rgba(217, 168, 50, 0.11));
}

.magazine-section > * {
  max-width: 1224px;
  margin-right: auto;
  margin-left: auto;
}

.chapter-grid {
  display: grid;
  gap: 14px;
}

.chapter-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(31, 90, 69, 0.15);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.92);
}

.chapter-content {
  min-width: 0;
}

.chapter-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-weight: 900;
}

.chapter-card h3 {
  margin: 0 0 8px;
}

.chapter-card p {
  margin: 0;
}

.chapter-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.chapter-card li {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(36, 123, 123, 0.12);
  color: var(--forest-dark);
  font-size: 14px;
  font-weight: 750;
}

.base-text-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.base-text-list blockquote {
  margin: 0;
  padding: 22px;
  border-left: 5px solid var(--sun);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  color: var(--forest-dark);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.about-copy {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.about-copy p {
  margin: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.participation-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  align-items: center;
  gap: 24px;
  max-width: 1224px;
  margin-bottom: 56px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 54, 45, 0.96), rgba(31, 90, 69, 0.94)),
    var(--forest);
  color: white;
  box-shadow: var(--shadow);
}

.participation-section h2,
.participation-section .eyebrow,
.participation-section p {
  color: white;
}

.participation-section p {
  margin-bottom: 0;
}

.participation-section .button-primary {
  background: var(--sun);
  color: var(--forest-dark);
  box-shadow: none;
}

.survey-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: 34px;
  max-width: 1224px;
  margin: 0 auto;
  padding: 52px 28px 34px;
}

.survey-hero-copy {
  max-width: 760px;
}

.survey-hero-copy p:not(.eyebrow),
.survey-form-section .section-heading p,
.survey-public-results .section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.survey-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 90, 69, 0.14);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.survey-hero-media img,
.survey-identity > img,
.survey-seal-row img,
.survey-logo-band img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.survey-form-section,
.survey-public-results,
.survey-logo-band {
  max-width: 1224px;
  margin: 0 auto;
  padding: 44px 28px;
}

.survey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: start;
  gap: 22px;
}

.survey-form {
  display: grid;
  gap: 16px;
}

.survey-form fieldset {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
}

.survey-form legend {
  padding: 0 8px;
  color: var(--forest-dark);
  font-size: 18px;
  font-weight: 850;
}

.survey-form label {
  display: grid;
  gap: 6px;
  color: var(--forest-dark);
  font-weight: 800;
}

.survey-form input,
.survey-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.survey-form textarea {
  resize: vertical;
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.choice-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.choice-row input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.survey-identity {
  display: grid;
  gap: 14px;
}

.survey-identity > img,
.survey-seal-row img {
  border: 1px solid rgba(31, 90, 69, 0.12);
  border-radius: 8px;
  background: white;
}

.survey-seal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.survey-public-results {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(36, 123, 123, 0.09), rgba(217, 168, 50, 0.08)),
    rgba(255, 253, 247, 0.72);
}

.survey-public-results > * {
  max-width: 1224px;
  margin-right: auto;
  margin-left: auto;
}

.survey-stats-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
}

.survey-stats-summary strong {
  color: var(--earth);
  font-size: 28px;
}

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

.survey-ranking-block {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(31, 90, 69, 0.07);
}

.survey-ranking-block h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.survey-ranking-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.survey-ranking-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(31, 90, 69, 0.12);
}

.survey-ranking-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.survey-ranking-position {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(36, 123, 123, 0.12);
  color: var(--forest-dark);
  font-weight: 900;
}

.survey-ranking-list strong {
  min-width: 0;
  color: var(--forest-dark);
}

.survey-ranking-main {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.survey-ranking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.survey-ranking-actions span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.survey-response-toggle,
.survey-response-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(31, 90, 69, 0.22);
  border-radius: 999px;
  background: white;
  color: var(--forest-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.survey-response-toggle:hover,
.survey-response-close:hover {
  border-color: var(--river);
  color: var(--river);
}

.survey-response-panel {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(31, 90, 69, 0.16);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(31, 90, 69, 0.07);
}

.survey-response-panel header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.survey-response-panel header p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.survey-response-filters {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(200px, 0.36fr);
  gap: 12px;
}

.survey-response-filters label {
  display: grid;
  gap: 6px;
  color: var(--forest-dark);
  font-weight: 800;
}

.survey-response-filters input,
.survey-response-filters select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.survey-response-table-wrap {
  overflow-x: auto;
}

.survey-response-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  font-size: 14px;
}

.survey-response-table th,
.survey-response-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(31, 90, 69, 0.12);
  text-align: left;
  vertical-align: top;
}

.survey-response-table th {
  color: var(--earth);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.survey-response-table td {
  color: var(--ink);
}

.survey-response-table td:last-child {
  width: 42%;
  color: var(--forest-dark);
  line-height: 1.55;
}

.survey-response-more {
  justify-self: start;
}

.survey-logo-band {
  padding-top: 28px;
}

.survey-logo-band img {
  border: 1px solid rgba(31, 90, 69, 0.14);
  border-radius: 8px;
  background: white;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(18px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(31, 90, 69, 0.16);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 18px;
  }

  .brand {
    white-space: normal;
  }

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

  .header-action,
  .hero-actions .button,
  .participation-section .button {
    width: 100%;
    white-space: normal;
  }

  .floating-survey-cta {
    right: 18px;
    bottom: 14px;
    left: 18px;
    width: auto;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 18px 30px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 0;
  }

  .map-point {
    grid-template-columns: 12px max-content;
    gap: 5px;
    font-size: 12px;
    transform: translate(-6px, -50%);
  }

  .map-point-dot {
    width: 12px;
    height: 12px;
  }

  .map-point-label {
    padding: 4px 6px;
    font-size: 12px;
  }

  .content-section {
    padding: 42px 18px;
  }

  .event-feature,
  .event-day,
  .event-facts,
  .event-contact,
  .event-asset-grid {
    grid-template-columns: 1fr;
  }

  .event-feature,
  .event-day,
  .event-asset-card,
  .about-seal-strip,
  .logo-ruler {
    padding: 18px;
  }

  .event-feature h3 {
    font-size: 28px;
  }

  .event-actions .button {
    width: 100%;
    white-space: normal;
  }

  .event-feature-visual {
    max-height: none;
  }

  .about-stamp-seal {
    width: 230px;
  }

  .about-round-seal {
    width: 158px;
  }

  .knowledge-map,
  .material-grid,
  .base-text-list,
  .survey-hero,
  .survey-layout,
  .survey-ranking-grid,
  .survey-response-filters {
    grid-template-columns: 1fr;
  }

  .survey-ranking-list li {
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: start;
  }

  .survey-ranking-actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .survey-response-panel {
    padding: 18px;
  }

  .survey-response-panel header {
    display: grid;
  }

  .survey-response-close {
    justify-self: start;
  }

  .survey-response-table {
    min-width: 0;
  }

  .survey-response-table,
  .survey-response-table thead,
  .survey-response-table tbody,
  .survey-response-table tr,
  .survey-response-table th,
  .survey-response-table td {
    display: block;
  }

  .survey-response-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .survey-response-table tbody {
    display: grid;
    gap: 10px;
  }

  .survey-response-table tr {
    padding: 12px;
    border: 1px solid rgba(31, 90, 69, 0.13);
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.78);
  }

  .survey-response-table td {
    display: grid;
    grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr);
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(31, 90, 69, 0.1);
  }

  .survey-response-table td:last-child {
    width: auto;
    border-bottom: 0;
  }

  .survey-response-table td::before {
    color: var(--earth);
    font-size: 12px;
    font-weight: 900;
    content: attr(data-label);
    text-transform: uppercase;
  }

  .survey-hero,
  .survey-form-section,
  .survey-public-results,
  .survey-logo-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .choice-grid,
  .survey-seal-row {
    grid-template-columns: 1fr;
  }

  .knowledge-map::before {
    top: 6%;
    bottom: 6%;
    left: 28px;
    width: 10px;
    height: auto;
    background:
      linear-gradient(180deg, transparent, rgba(36, 123, 123, 0.28), rgba(120, 155, 84, 0.22), transparent);
    transform: none;
  }

  .topic-card,
  .material-card,
  .chapter-card,
  .base-text-list blockquote {
    padding: 18px;
  }

  .material-card footer,
  .material-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .chapter-number {
    width: 50px;
    height: 50px;
  }

  .participation-section {
    grid-template-columns: 1fr;
    margin-bottom: 42px;
    padding: 22px;
  }

  .site-footer {
    display: block;
    padding: 22px 18px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 29px;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  .site-nav .survey-nav-link,
  .floating-survey-cta {
    animation: none;
  }
}
