:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --ink: #1e2633;
  --muted: #5a6473;
  --line: #dde2ea;
  --brand: #1f3654;
  --brand-soft: #edf2f8;
  --accent: #2d4b73;
  --max: 1080px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
html { scrollbar-gutter: stable; }
body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo img { height: 42px; width: auto; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: #2f3d52;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  font-size: 26px;
  color: var(--brand);
}

main section { padding: 42px 0; }
.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 34px 0 30px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 10px;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; line-height: 1.2; color: #162231; }
h1 { font-size: clamp(32px, 4.5vw, 50px); max-width: 700px; margin: 0 auto 8px; }
h2 { font-size: clamp(28px, 3.8vw, 40px); margin-bottom: 10px; }
h3 { font-size: 24px; margin-bottom: 6px; }
p { color: var(--muted); }
.lead { max-width: 700px; font-size: 17px; margin: 0 auto; }
.section-intro {
  max-width: 720px;
  margin: 0 auto 20px;
  text-align: center;
}
.section-intro p {
  max-width: 680px;
  margin: 0 auto;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.card h3 { font-size: 22px; }
.small { font-size: 14px; }

.steps { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.step-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 6px;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.team-photo {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--brand-soft);
  flex: 0 0 auto;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 {
  margin-bottom: 2px;
}
.team-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.story-quote {
  background: var(--brand);
  color: #e9eef7;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.story-quote p {
  color: #e9eef7;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.3;
}
.story-quote p em {
  opacity: .9;
}
.story-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #c8d2e3;
  font-style: normal;
}

.cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.hero .container { text-align: center; }
.hero .btn-row { justify-content: center; margin-top: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  padding: 12px 16px;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #162c45; }
.btn-outline { border-color: var(--line); color: #2f3d52; background: #fff; }
.btn-outline:hover { border-color: #b8c3d3; }

footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 30px 0 20px;
  margin-top: 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
footer h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #263447;
}
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: #4e5c70; font-size: 14px; }
footer a:hover { color: var(--brand); }
.brand-note { max-width: 360px; font-size: 14px; }
.copyright {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 12px;
  color: #707d90;
  text-align: center;
}

.notice {
  background: #f2f5fa;
  border: 1px solid #d7dfec;
  border-radius: 10px;
  padding: 16px;
  color: #3b4a60;
}

@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    right: 20px;
    top: 72px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    width: 220px;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .nav-links.open { display: flex; }
  .grid-3, .grid-2, .steps, .footer-grid, .team-grid { grid-template-columns: 1fr; }
  main section { padding: 34px 0; }
  .hero { padding: 28px 0 24px; }
}
