:root {
  --ink: #002457;
  --ink-soft: #405674;
  --forest: #002457;
  --forest-light: #16477f;
  --cream: #f3f6fb;
  --paper: #ffffff;
  --gold: #cd0450;
  --gold-soft: #ffd4e4;
  --line: #d8e0eb;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(0, 36, 87, 0.13);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 10px 16px; background: var(--gold); color: var(--forest); border-radius: 8px; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid rgba(0, 36, 87, 0.1); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: clamp(200px, 24vw, 310px); height: auto; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a { padding: 9px 12px; border-radius: 999px; color: var(--ink-soft); text-decoration: none; font-size: 0.94rem; font-weight: 750; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--forest); background: #edf2f8; }
.site-nav .nav-cta { margin-left: 4px; color: var(--white); background: var(--gold); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; color: var(--white); background: var(--forest); cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; transition: transform .2s ease; }

.eyebrow { margin: 0 0 14px; color: var(--forest-light); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -0.04em; }
h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(2.65rem, 7vw, 5.75rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { margin-bottom: 10px; font-size: 1.35rem; }
.lead { max-width: 660px; margin: 0; color: var(--ink-soft); font-size: clamp(1.06rem, 2vw, 1.25rem); }
.section { padding: 92px 0; }
.section-soft { background: var(--cream); }
.section-dark { color: var(--white); background: var(--forest); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 40px; }
.section-head > div { max-width: 720px; }
.section-head p:not(.eyebrow) { margin: 0; color: var(--ink-soft); }
.section-dark .eyebrow, .section-dark .section-head p { color: var(--gold-soft); }
.section-dark h2 { color: var(--white); }

.hero { position: relative; min-height: 660px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--forest); }
.hero::before { content: ""; position: absolute; width: 720px; height: 720px; right: -190px; top: -220px; border: 130px solid rgba(205,4,80,.18); border-radius: 50%; }
.hero::after { content: ""; position: absolute; width: 420px; height: 290px; right: 7vw; bottom: -70px; background: linear-gradient(145deg, var(--gold) 0 48%, transparent 48% 100%); opacity: .95; transform: rotate(-4deg); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 60px; padding: 90px 0; }
.hero .eyebrow { color: var(--gold); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lead { color: #dbe7e3; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-card { justify-self: end; width: min(100%, 390px); padding: 34px; color: var(--ink); background: var(--cream); border-radius: 30px; box-shadow: var(--shadow); transform: rotate(2deg); }
.hero-card .number { color: var(--gold); font-size: 5rem; font-weight: 950; line-height: .9; letter-spacing: -.08em; }
.hero-card p { margin: 18px 0 0; font-size: 1.08rem; font-weight: 750; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 10px 20px; border: 2px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 850; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--gold); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.5); }
.button-outline { color: var(--forest); border-color: var(--forest); }

.values-grid, .program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card, .program-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 20px rgba(20,63,54,.04); }
.value-icon, .program-number { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 15px; color: var(--forest); background: var(--gold); font-weight: 950; }
.value-card p, .program-card p { margin-bottom: 0; color: var(--ink-soft); }
.statement { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.statement blockquote { margin: 0; font-size: clamp(1.7rem, 3vw, 2.65rem); line-height: 1.25; letter-spacing: -.035em; font-weight: 800; }
.statement-copy p { color: #dbe7e3; }

.page-hero { padding: 88px 0 70px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 880px; font-size: clamp(2.7rem, 6vw, 5rem); }
.candidate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.candidate-card { overflow: hidden; align-self: start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,36,87,.07); transition: transform .2s ease, box-shadow .2s ease; }
.candidate-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.candidate-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; display: grid; place-items: center; background: linear-gradient(145deg, #dce6f2, #f7d8e4); }
.candidate-photo img { width: 100%; height: 100%; object-fit: cover; }
.candidate-placeholder { display: grid; place-items: center; width: 44%; aspect-ratio: 1; border: 3px solid rgba(20,63,54,.18); border-radius: 50%; color: var(--forest); background: rgba(255,255,255,.35); font-size: 3rem; font-weight: 950; }
.candidate-order { position: absolute; top: 16px; left: 16px; min-width: 44px; height: 44px; display: grid; place-items: center; padding-inline: 10px; border-radius: 50%; color: var(--white); background: var(--gold); font-weight: 950; box-shadow: 0 6px 16px rgba(0,36,87,.2); }
.candidate-body { padding: 24px; }
.candidate-body h2 { margin-bottom: 6px; font-size: 1.55rem; }
.candidate-meta { margin: 0 0 14px; color: var(--forest-light); font-size: .9rem; font-weight: 800; }
.candidate-bio { margin: 0; color: var(--ink-soft); }
.candidate-details { margin-top: 18px; border-top: 1px solid var(--line); }
.candidate-details summary { padding-top: 16px; color: var(--gold); font-weight: 850; cursor: pointer; }
.candidate-details summary:hover { color: var(--forest); }
.candidate-details-copy { padding-top: 8px; }
.candidate-details-copy h3 { margin: 22px 0 8px; color: var(--forest); font-size: 1rem; letter-spacing: -.01em; }
.candidate-details-copy p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
.candidate-topic { display: inline-flex; margin-top: 18px; padding: 6px 10px; border-radius: 8px; color: var(--forest); background: var(--cream); font-size: .82rem; font-weight: 850; }
.candidate-note { max-width: 760px; margin: 0 auto 42px; padding: 18px 22px; color: var(--ink-soft); background: var(--cream); border-left: 5px solid var(--gold); border-radius: 4px 14px 14px 4px; }

.program-detail { display: grid; grid-template-columns: 250px 1fr; gap: 52px; padding: 42px 0; border-top: 1px solid var(--line); }
.program-detail:first-child { border-top: 0; }
.program-detail h2 { font-size: 1.8rem; }
.program-introduction { padding-bottom: 42px; }
.program-intro { max-width: 880px; }
.program-intro p { color: var(--ink-soft); font-size: 1.06rem; }
.program-intro .program-greeting { color: var(--ink); font-size: 1.25rem; font-weight: 850; }
.program-intro .program-summary { margin: 34px 0 0; color: var(--forest); font-size: 1.3rem; font-weight: 900; }
.program-priorities { padding-top: 0; }
.program-copy > p { margin-top: 0; color: var(--ink); font-weight: 700; }
.program-detail ul { margin: 0; padding-left: 1.2rem; color: var(--ink-soft); }
.program-detail li + li { margin-top: 10px; }
.program-index { color: var(--gold); font-size: 3.4rem; font-weight: 950; letter-spacing: -.07em; line-height: 1; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); }
.news-card time { color: var(--forest-light); font-size: .82rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.news-card p { color: var(--ink-soft); }
.news-card--future { border-style: dashed; background: var(--cream); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.contact-list { display: grid; gap: 16px; margin-top: 28px; }
.contact-item { padding: 20px; background: var(--cream); border-radius: 16px; }
.contact-item strong { display: block; }
.contact-item span, .contact-item a { color: var(--ink-soft); }
.form { display: grid; gap: 17px; padding: 32px; background: var(--cream); border-radius: var(--radius); }
.form label { font-size: .9rem; font-weight: 850; }
.form input, .form textarea { width: 100%; margin-top: 6px; padding: 13px 14px; border: 1px solid #bfcac4; border-radius: 10px; color: var(--ink); background: var(--white); }
.form textarea { min-height: 130px; resize: vertical; }
.form-note { margin: 0; color: var(--ink-soft); font-size: .84rem; }

.cta-band { padding: 58px 0; color: var(--white); background: var(--gold); }
.cta-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-wrap h2 { max-width: 670px; margin: 0; color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.cta-band .button-outline { color: var(--white); border-color: var(--white); }
.site-footer { padding: 54px 0 28px; color: #dce6f2; background: #001a3d; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; }
.footer-title { color: var(--white); font-weight: 900; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #dce6f2; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: #a9c0b9; font-size: .85rem; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: 70px; display: none; align-items: stretch; flex-direction: column; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid, .statement, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { justify-self: start; transform: none; }
  .values-grid, .program-grid, .candidate-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .program-detail { grid-template-columns: 110px 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  .hero-grid { padding: 65px 0 80px; }
  .hero-card { padding: 26px; }
  .section-head, .cta-wrap { align-items: flex-start; flex-direction: column; }
  .values-grid, .program-grid, .candidate-grid, .news-grid, .footer-grid { grid-template-columns: 1fr; }
  .program-detail { grid-template-columns: 1fr; gap: 16px; }
  .program-index { font-size: 2.3rem; }
  .contact-grid { gap: 40px; }
}
