
:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-soft: #f3ede1;
  --text: #2f352f;
  --muted: #667066;
  --line: #dcd3c1;
  --accent: #7a6741;
  --accent-dark: #5a4a2c;
  --accent-soft: #ece3d0;
  --footer: #2f332f;
  --shadow: 0 16px 36px rgba(54, 50, 40, 0.08);
  --radius: 20px;
  --content: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #fcfbf7 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }
.wrap { width: min(calc(100% - 32px), var(--content)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(252, 251, 247, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 211, 193, 0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  padding: 12px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}
.brand img { width: 62px; height: 62px; object-fit: contain; flex: 0 0 auto; }
.brand-copy { min-width: 0; }
.brand-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.05;
}
.brand-subtitle { margin: 4px 0 0; color: var(--muted); font-size: 0.95rem; }
.nav-wrap { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { border-color: var(--accent); color: var(--accent-dark); }
.btn, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover, .btn-secondary:hover { transform: translateY(-1px); }
.btn { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn:hover { background: var(--accent-dark); color: #fff; }
.btn-secondary { background: var(--surface); color: var(--accent-dark); border: 1px solid var(--line); }
main { display: block; }
.hero { padding: 80px 0 42px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
}
.hero-card, .hero-visual, .panel, .card, .stat-card, .notice {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card, .panel, .card, .stat-card, .notice { padding: 30px; }
.hero-visual {
  padding: 26px;
  background: radial-gradient(circle at top, #f8f2e7 0%, #fffdf9 65%);
}
.hero-logo { max-width: 500px; margin: 0 auto 20px; display: block; }
.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h1, h2, h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.14;
  color: #2b302b;
}
h1 { font-size: clamp(2.13rem, 3.8vw, 3.83rem); }
.h1-smaller { font-size: clamp(1.8rem, 3.2vw, 3.5rem); }
.h1-22 { font-size: 28px !important; }

h2 { font-size: clamp(1.23rem, 1.95vw, 1.78rem); }
h3 { font-size: 1.13rem; }
p { margin: 0 0 16px; }
.lead { font-size: 1.13rem; color: #404740; }
.note, .muted { color: var(--muted); }
.hero-actions, .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.section { padding: 72px 0; }
.section.compact { padding: 54px 0; }
.grid-2, .grid-3, .grid-4, .stats-grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4, .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.featured { background: linear-gradient(180deg, #fbf7ee 0%, #ffffff 100%); border-color: #ccb98a; }
.white-tag { background: #ffffff !important; border: 1px solid #e4dccd; }

.clean { list-style: none; margin: 0; padding: 0; }
.clean li { margin: 0 0 12px; padding-left: 18px; position: relative; }
.clean li::before { content: "•"; position: absolute; left: 0; color: var(--accent); }
.table-like { display: grid; gap: 10px; }
.row {
  display: grid;
  grid-template-columns: minmax(150px, 200px) 1fr;
  gap: 18px;
  border-bottom: 1px solid #ede4d5;
  padding-bottom: 10px;
}
.row:last-child { border-bottom: 0; padding-bottom: 0; }
.stat-value {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--accent-dark);
}
.doc-box, .trust-box {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid #e4dbc9;
}
.callout-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.inline-logo { width: 78px; height: auto; }
.site-footer {
  margin-top: 18px;
  padding: 36px 0;
  background: var(--footer);
  color: #eef1ed;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 24px;
  align-items: start;
}
.footer-links { display: grid; gap: 10px; justify-content: end; }
.site-footer a { color: #ffffff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand img { width: 52px; height: 52px; object-fit: contain; }
.highlight-image, .doc-preview {
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.doc-preview { overflow: hidden; }
.doc-preview img { display: block; width: 100%; }
.center { text-align: center; }
.link-list { display: grid; gap: 12px; }
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--surface-soft);
  border: 1px solid #e4dbc9;
  border-radius: 16px;
  text-decoration: none;
}
.link-card strong { color: var(--text); }
@media (max-width: 1050px) {
  .header-inner, .nav-wrap { align-items: flex-start; }
  .header-inner { flex-direction: column; }
  .nav-wrap { width: 100%; justify-content: flex-start; }
}
@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .hero { padding-top: 54px; }
  .section { padding: 56px 0; }
  .row { grid-template-columns: 1fr; gap: 6px; }
  .brand img { width: 54px; height: 54px; }
  .brand-subtitle { font-size: 0.88rem; }
  .hero-card, .panel, .card, .stat-card, .notice, .hero-visual { padding: 22px; }
  .btn, .btn-secondary { width: 100%; }
  .nav { gap: 12px; }
}




.role {
  margin: 8px 0 12px;
  color: #5f5a52;
  font-size: 0.82rem;
  line-height: 1.4;
}

.board-grid {
  align-items: stretch;
}

.board-grid .card {
  display: flex;
  flex-direction: column;
}

.board-grid .card h3 {
  margin-bottom: 0;
}

.board-grid .card .role {
  min-height: 3.6em;
}

.board-grid .card p:last-child {
  margin-top: 0;
}
