/* GP20260911 */
:root {
  --paper: #f3efe0;
  --paper-2: #fbf9f2;
  --ink: #20241f;
  --muted: #686d65;
  --line: rgba(32,36,31,.14);
  --orange: #f7931d;
  --green: #8cc63f;
  --red: #ed1c24;
  --magenta: #ec008c;
  --blue: #14a8df;
  --purple: #92278f;
  --radius: 28px;
  --max: 1220px;
  --shadow: 0 24px 60px rgba(32,36,31,.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 102px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 54px; height: 48px; object-fit: cover; border-radius: 50%; }
.brand strong { display:block; font-size: 15px; letter-spacing: .02em; }
.brand small { display:block; margin-top:2px; color:var(--muted); font-size: 11px; }
.top-nav { justify-self: center; display: flex; align-items:center; gap: 25px; font-size: 13px; }
.top-nav a { text-decoration: none; color: #373c36; }
.top-nav a:hover { color: #000; }
.access-link { padding-left: 20px; border-left: 1px solid var(--line); }
.lang-switcher { display:flex; gap:5px; }
.lang-switcher button {
  border:0; background:transparent; color:var(--muted); padding:6px 4px;
  font: inherit; font-size:10px; cursor:pointer; letter-spacing:.09em;
}
.lang-switcher button.is-active { color:var(--ink); border-bottom: 1px solid var(--ink); }
main { overflow:hidden; }
.hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 690px;
  display:grid;
  grid-template-columns: 1.18fr .82fr;
  align-items:center;
  gap: 60px;
  padding: 72px 0 78px;
}
.eyebrow, .section-kicker {
  margin:0 0 18px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size: 11px;
  font-weight: 700;
}
h1,h2,h3,p { margin-top:0; }
h1,h2 { font-family: Georgia, "Times New Roman", serif; font-weight:400; }
h1 { font-size: clamp(48px, 6vw, 78px); line-height: .99; letter-spacing: -.035em; margin-bottom: 30px; }
.lede { max-width: 710px; color:#4a4f48; font-size: 18px; line-height:1.65; }
.hero-actions { display:flex; gap:12px; margin-top:32px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:46px; padding:0 20px; border-radius:999px; text-decoration:none; font-size:13px; }
.button.primary { background:var(--ink); color:#fff; }
.button.quiet { border:1px solid var(--line); }
.hero-mark { position:relative; display:flex; justify-content:center; }
.mark-frame {
  width:min(460px, 100%);
  aspect-ratio:1/1;
  border-radius:50%;
  overflow:hidden;
  background:var(--paper-2);
  box-shadow:var(--shadow);
  transform:rotate(-2deg);
  border:8px solid rgba(255,255,255,.55);
}
.mark-frame img { width:100%; height:100%; object-fit:cover; }
.name-band {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:22px max(20px, calc((100vw - var(--max))/2));
  color:var(--muted);
  font-size:12px;
}
.name-band p { margin:0; }
.section { width:min(calc(100% - 40px), var(--max)); margin:0 auto; padding:116px 0; }
.split { display:grid; grid-template-columns: .88fr 1.12fr; gap:100px; }
h2 { font-size: clamp(38px, 4.5vw, 62px); line-height:1.05; letter-spacing:-.025em; margin:0; }
.prose { font-size:17px; color:#444942; }
.prose p { margin-bottom:22px; }
.muted { color:var(--muted); font-size:14px; }
.h20 { border-top:1px solid var(--line); }
.section-heading { display:grid; grid-template-columns: 1fr .65fr; gap:70px; align-items:end; margin-bottom:52px; }
.section-heading > p { color:var(--muted); margin:0; max-width:500px; }
.program-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.program-card {
  position:relative;
  min-height: 510px;
  padding:34px;
  background:var(--paper-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.program-card:before { content:""; position:absolute; left:0; right:0; top:0; height:7px; background:var(--orange); }
.accent-magenta:before { background:var(--magenta); }
.accent-green:before { background:var(--green); }
.program-no { display:block; margin-bottom:62px; color:var(--muted); font-size:11px; letter-spacing:.12em; }
.program-card h3 { font-family:Georgia,serif; font-weight:400; font-size:31px; line-height:1.06; margin-bottom:14px; }
.program-tag { color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.1em; min-height:40px; }
.program-card > p:not(.program-tag):not(.card-note) { color:#474c45; font-size:14px; line-height:1.68; }
.card-note { position:absolute; left:34px; right:34px; bottom:28px; border-top:1px solid var(--line); padding-top:17px; color:var(--muted); font-size:12px; }
.approach { border-top:1px solid var(--line); }
.section-heading.compact { grid-template-columns:1fr; max-width:820px; }
.principles { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:54px; }
.principles article { padding:26px 28px 16px 0; border-top:1px solid var(--line); }
.principles article + article { padding-left:28px; border-left:1px solid var(--line); }
.principles span { color:var(--muted); font-size:11px; }
.principles h3 { font-family:Georgia,serif; font-weight:400; font-size:26px; margin:40px 0 10px; }
.principles p { color:var(--muted); font-size:13px; }
.contact {
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1fr .72fr;
  gap:90px;
  align-items:center;
}
.contact > div:first-child > p:last-child { max-width:650px; color:var(--muted); margin-top:28px; }
.contact-card { background:var(--ink); color:#fff; border-radius:var(--radius); padding:36px; }
.contact-card .label { font-size:10px; text-transform:uppercase; letter-spacing:.14em; color:#c8cbc4; }
.contact-card a { font-family:Georgia,serif; font-size:29px; text-decoration:none; word-break:break-word; }
.contact-card .small { color:#c8cbc4; font-size:12px; margin:44px 0 0; }
.site-footer {
  width:min(calc(100% - 40px), var(--max));
  margin:0 auto;
  border-top:1px solid var(--line);
  min-height:130px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  font-size:12px;
  color:var(--muted);
}
.site-footer p { margin:4px 0 0; }
.site-footer strong { color:var(--ink); }
.footer-links { display:flex; gap:22px; }
.footer-links a { text-decoration:none; }
.reveal { animation: rise .8s ease both; }
.hero-mark.reveal { animation-delay:.1s; }
@keyframes rise { from { opacity:0; transform:translateY(12px);} to {opacity:1; transform:none;} }

.simple-page { min-height:100vh; display:grid; place-items:center; padding:40px 20px; }
.simple-shell { width:min(720px,100%); background:var(--paper-2); border:1px solid var(--line); border-radius:var(--radius); padding:46px; }
.simple-shell .brand { margin-bottom:55px; }
.simple-shell h1 { font-size:52px; }
.simple-shell p { color:var(--muted); }
.notice { margin:30px 0; padding:18px 20px; border-left:3px solid var(--orange); background:#f7f2e5; font-size:13px; }
.back-link { display:inline-block; margin-top:22px; font-size:13px; }
.login-form { margin-top:32px; display:grid; gap:14px; }
.login-form label { display:grid; gap:7px; font-size:12px; color:var(--muted); }
.login-form input { width:100%; min-height:46px; border:1px solid var(--line); border-radius:10px; background:#fff; padding:0 13px; font:inherit; }
.login-form button { min-height:46px; border:0; border-radius:999px; background:#aeb1aa; color:#fff; font:inherit; cursor:not-allowed; }

@media (max-width: 980px) {
  .site-header { grid-template-columns:1fr auto; min-height:88px; }
  .top-nav { display:none; }
  .hero { grid-template-columns:1fr; min-height:auto; padding:70px 0; }
  .hero-mark { order:-1; justify-content:flex-start; }
  .mark-frame { width:260px; }
  .name-band { grid-template-columns:1fr; gap:6px; }
  .split, .section-heading, .contact { grid-template-columns:1fr; gap:42px; }
  .program-grid { grid-template-columns:1fr; }
  .program-card { min-height:430px; }
  .principles { grid-template-columns:1fr 1fr; }
  .principles article + article { border-left:0; padding-left:0; }
  .principles article:nth-child(even) { padding-left:24px; border-left:1px solid var(--line); }
}
@media (max-width: 620px) {
  .site-header { width:min(calc(100% - 24px), var(--max)); }
  .brand small { display:none; }
  .brand img { width:44px; height:40px; }
  .lang-switcher button { font-size:9px; }
  .hero,.section,.site-footer { width:min(calc(100% - 28px), var(--max)); }
  h1 { font-size:47px; }
  .lede { font-size:16px; }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .section { padding:84px 0; }
  .principles { grid-template-columns:1fr; }
  .principles article:nth-child(even), .principles article + article { padding-left:0; border-left:0; }
  .site-footer { align-items:flex-start; flex-direction:column; justify-content:center; padding:28px 0; }
  .simple-shell { padding:30px 24px; }
}
