:root {
  --bg: #f3eee4;
  --surface: rgba(255, 253, 249, 0.92);
  --surface-strong: #fffdfa;
  --ink: #111714;
  --muted: #47524b;
  --line: rgba(17, 23, 20, 0.14);
  --green: #183629;
  --terra: #9a4f31;
  --gold: #b58b3a;
  --olive: #6c7557;
  --shadow: 0 24px 80px rgba(24, 27, 24, 0.1);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --site-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: 116px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(154, 79, 49, 0.1), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(24, 54, 41, 0.1), transparent 22%),
    linear-gradient(180deg, #f1eadf 0%, #f7f3ec 34%, #fdfbf7 100%);
}

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

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

.site-shell {
  width: min(calc(100% - 40px), var(--site-width));
  margin: 24px auto 48px;
}

.site-header,
.section,
.site-footer {
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 252, 247, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: var(--shadow);
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 320px;
}

.brand-logo,
.footer-logo {
  width: 156px;
  max-width: 36vw;
  height: auto;
}

.brand-logo {
  width: 184px;
  height: 56px;
  max-width: 40vw;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
}

.brand-text {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 150px;
}

.site-nav {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(24, 54, 41, 0.08);
  border: 1px solid rgba(24, 54, 41, 0.12);
}

.lang-link {
  min-width: 42px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.lang-link.active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 18px rgba(24, 54, 41, 0.16);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.89rem;
  white-space: nowrap;
  font-weight: 600;
  text-align: center;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--green);
}

.section {
  margin-top: 28px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 52px 48px;
}

.hero-copy h1,
.section-heading h2,
.detail-panel h2,
.site-footer h2 {
  font-family: "Source Serif 4", serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  max-width: 11ch;
}

.hero-lead,
.section-heading p,
.info-card p,
.goal-item p,
.membership-card p,
.process-card p,
.details-list,
.site-footer p,
.news-card p,
.news-feature-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.section-note {
  margin-top: 16px;
}

.toggle-group {
  margin-top: 24px;
}

.toggle-buttons {
  display: grid;
  gap: 14px;
}

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

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

.toggle-button {
  width: 100%;
  min-height: 124px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 54, 41, 0.18);
  background: linear-gradient(135deg, var(--green) 0%, #24493a 100%);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 1.16rem;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(24, 54, 41, 0.18);
  display: grid;
  gap: 12px;
  align-content: start;
}

.toggle-button.active {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 36px rgba(24, 54, 41, 0.24);
  background: linear-gradient(135deg, #24493a 0%, #2e5a48 100%);
}

.toggle-heading {
  display: block;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
}

.toggle-copy {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}

.toggle-panels {
  margin-top: 18px;
}

.toggle-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.toggle-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.toggle-panel .section-heading {
  margin-bottom: 18px;
}

.documents-block {
  margin-top: 28px;
}

.document-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.document-stack .document-card {
  max-width: none;
  width: auto;
  min-width: 190px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, #24493a 100%);
  color: #fff;
  border-color: rgba(24, 54, 41, 0.16);
  box-shadow: 0 12px 28px rgba(24, 54, 41, 0.16);
  text-align: center;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.person-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.eyebrow,
.news-meta {
  margin: 0 0 14px;
  color: var(--terra);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.button-primary {
  background: linear-gradient(135deg, var(--green) 0%, #24493a 100%);
  color: #fff;
}

.button-secondary {
  background: rgba(24, 54, 41, 0.04);
  color: var(--green);
  border: 1px solid var(--line);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-meta li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(24, 54, 41, 0.08);
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-meta a {
  display: inline-block;
  color: inherit;
}

.hero-panel {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #d7ccb6 0%, #f3ecdf 42%, #dfe6dc 100%);
}

.hero-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-card {
  position: absolute;
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 18px 46px rgba(31, 42, 36, 0.12);
  border: 1px solid rgba(24, 54, 41, 0.1);
}

.hero-card span {
  color: var(--terra);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.hero-card strong {
  font-size: 1.15rem;
  line-height: 1.3;
}

.hero-card-main {
  right: 28px;
  top: 34px;
  width: min(280px, calc(100% - 56px));
}

.hero-card-accent {
  left: 26px;
  bottom: 28px;
  width: min(250px, calc(100% - 52px));
}

.section-grid,
.goal-list,
.news-list,
.card-grid,
.about-card-grid,
.board-grid,
.membership-grid,
.process-grid,
.details-section,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

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

.section-heading h2,
.detail-panel h2,
.site-footer h2 {
  font-size: clamp(2rem, 4.3vw, 3.1rem);
  margin-bottom: 16px;
}

.compact {
  max-width: 520px;
}

.info-card,
.membership-card,
.process-card,
.person-card,
.detail-panel,
.news-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.card-media {
  margin: -6px -6px 18px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #ebe5da;
}

.card-media img,
.news-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.goal-item {
  display: grid;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(24, 54, 41, 0.045);
  border: 1px solid rgba(24, 54, 41, 0.1);
}

.goal-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, #3d6d57 100%);
  color: white;
  font-weight: 800;
  margin-bottom: 2px;
}

.split-section {
  display: grid;
  gap: 24px;
}

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

.research-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.research-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.research-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-feature-copy {
  padding: 28px;
}

.research-list {
  display: grid;
  gap: 18px;
}

.research-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.research-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

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

.about-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.about-card {
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  overflow: hidden;
}

.about-card summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
}

.about-card summary::-webkit-details-marker {
  display: none;
}

.about-card summary h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.about-card summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-card[open] summary {
  border-bottom: 1px solid var(--line);
}

.about-card-body {
  padding: 20px 24px 24px;
}

.about-card-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.about-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.annual-docs {
  margin-top: 34px;
}

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

.document-card {
  display: block;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 700;
  line-height: 1.45;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.research-members {
  display: grid;
  gap: 18px;
}

.member-profile {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.member-profile h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.member-profile p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.member-profile-photo {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.news-section {
  padding: 40px;
}

.news-section .section-heading {
  max-width: 760px;
}

.news-section .news-feature-copy {
  padding: 28px;
}

.news-section .news-card {
  padding: 24px;
}

.news-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.news-feature-copy {
  padding: 28px;
}

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

.person-card {
  text-align: center;
}

.person-photo {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 4px solid rgba(35, 67, 53, 0.08);
}

.photo-fill {
  object-position: center 18%;
  transform: scale(1.22);
  transform-origin: center;
}

.person-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(24, 54, 41, 0.12), rgba(154, 79, 49, 0.14));
  border: 4px solid rgba(35, 67, 53, 0.08);
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.membership-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.membership-card strong {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 1.2rem;
}

.inline-emphasis {
  color: var(--green);
  font-weight: 700;
}

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

.membership-sheet {
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.membership-sheet-header {
  margin-bottom: 18px;
}

.membership-sheet-header h2 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0;
}

.membership-sheet-grid {
  display: grid;
  gap: 0;
}

.membership-table {
  display: grid;
  grid-template-columns: 180px 1fr 170px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fffdfa;
}

.table-head,
.table-cell {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.table-head {
  background: rgba(24, 54, 41, 0.06);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-cell {
  color: var(--muted);
  line-height: 1.65;
  background: #fffdfa;
}

.table-type,
.table-fee {
  color: var(--green);
  font-weight: 700;
}

.table-type:target {
  background: rgba(24, 54, 41, 0.11);
  outline: 2px solid rgba(24, 54, 41, 0.18);
  outline-offset: -2px;
}

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

.practical-card {
  padding: 22px;
  border-radius: 18px;
  background: #fffdfa;
  border: 1px solid var(--line);
}

.practical-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
}

.practical-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.practical-card p:last-child {
  margin-bottom: 0;
}

.sheet-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.sheet-label {
  font-weight: 700;
  color: var(--green);
}

.sheet-value {
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  color: var(--green);
  font-weight: 700;
}

.section-actions {
  margin-top: 24px;
}

.output-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
  margin-top: 10px;
}

.output-image {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: #ebe5da;
}

.output-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.output-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.output-plain {
  max-width: 720px;
  display: grid;
  gap: 18px;
}

.output-plain p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.output-inline-image {
  width: min(100%, 397px);
  height: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(24, 27, 24, 0.08);
  object-fit: contain;
  object-position: center;
  background: #fffdfa;
  padding: 0;
}

.membership-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.toggle-panel .process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contrast {
  background: linear-gradient(135deg, rgba(35, 67, 53, 0.97), rgba(51, 92, 73, 0.94));
  color: #fff;
}

.contrast .eyebrow,
.contrast h2 {
  color: #fff;
}

.fee-strip {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.fee-info-panel,
.fee-qr-panel,
.partners-panel {
  background: #fffdf9;
}

.payment-qr {
  display: grid;
  grid-template-columns: 1.2fr 220px;
  gap: 20px;
  align-items: center;
  min-height: 100%;
}

.payment-qr h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.payment-qr-copy p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.payment-qr-image {
  width: 220px;
  height: 220px;
  border-radius: 18px;
  background: #fff;
  padding: 12px;
  border: 1px solid var(--line);
}

.partners-strip {
  padding-top: 32px;
  padding-bottom: 32px;
}

.partners-panel {
  padding: 28px;
}

.partners-image {
  width: 100%;
  margin-top: 18px;
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  border: 1px solid var(--line);
}

.details-list {
  margin: 0;
  display: grid;
  gap: 16px;
}

.details-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  font-weight: 700;
}

.details-list dd {
  margin: 0;
  text-align: right;
}

.site-footer {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 18px 24px;
  background: rgba(24, 38, 30, 0.96);
  color: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-xl);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-size: 0.95rem;
  gap: 6px 16px;
  color: rgba(255, 255, 255, 0.95);
}

.footer-org-title {
  font-size: clamp(1.2rem, 1.7vw, 1.48rem) !important;
  line-height: 1.1;
}

.footer-button {
  align-self: start;
  background: linear-gradient(135deg, var(--terra) 0%, #7f3e25 100%);
  color: #fff;
  min-height: 56px;
  padding: 0 24px;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(127, 62, 37, 0.26);
}

.footer-button:hover {
  background: linear-gradient(135deg, #ad5e3d 0%, #6f341e 100%);
}

.member-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.member-card {
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  overflow: hidden;
}

.member-card summary {
  list-style: none;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 24px;
  cursor: pointer;
}

.member-card summary::-webkit-details-marker {
  display: none;
}

.member-card[open] summary {
  border-bottom: 1px solid var(--line);
}

.member-card-copy h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
}

.member-role {
  margin: 0 0 8px;
  color: var(--terra);
  font-weight: 700;
}

.member-short {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.member-card-photo {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  object-position: center top;
}

.member-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(35, 67, 53, 0.14), rgba(182, 101, 67, 0.18));
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 800;
}

.member-card-body {
  padding: 22px 24px 24px;
}

.member-card-body p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .site-header {
    border-radius: 28px;
    padding: 18px;
    flex-wrap: wrap;
  }

  .hero,
  .research-grid,
  .research-feature,
  .member-profile,
  .member-card summary,
  .output-layout,
  .fee-strip,
  .news-grid,
  .news-feature,
  .payment-qr {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .about-card-grid,
  .document-grid,
  .toggle-buttons-3,
  .toggle-buttons-4,
  .goal-list,
  .board-grid,
  .member-card-list,
  .membership-grid,
  .membership-detail-grid,
  .process-grid,
  .membership-practical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-table {
    grid-template-columns: 150px 1fr 130px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--site-width));
    margin-top: 12px;
  }

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

  .site-nav {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .brand {
    width: 100%;
    justify-content: space-between;
    flex: 1 1 auto;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo,
  .footer-logo {
    width: 150px;
  }

  .hero-panel {
    min-height: 300px;
  }

  .card-grid,
  .about-card-grid,
  .document-grid,
  .toggle-buttons-3,
  .toggle-buttons-4,
  .goal-list,
  .board-grid,
  .member-card-list,
  .membership-grid,
  .membership-detail-grid,
  .process-grid,
  .membership-practical-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .membership-table {
    grid-template-columns: 1fr;
  }

  .table-head {
    display: none;
  }

  .table-cell {
    border-bottom: none;
  }

  .table-type {
    padding-bottom: 8px;
    border-top: 1px solid var(--line);
    background: rgba(24, 54, 41, 0.05);
  }

  .table-fee {
    padding-top: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  .details-list div {
    display: grid;
    gap: 4px;
  }

  .toggle-panel {
    padding: 22px;
  }

  .toggle-panel .process-grid {
    grid-template-columns: 1fr;
  }

  .sheet-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .details-list dd {
    text-align: left;
  }
}
