:root {
  --bg: #f6f3ed;
  --surface: #ffffffa8;
  --text: #171717;
  --muted: #67645f;
  --line: #d8d1c5;
  --line-strong: #1d1d1d;
  --accent: #111111;
  --max: 1120px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top left, #fffaf0 0, var(--bg) 42%, #ebe6dd 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(246, 243, 237, 0.82);
  backdrop-filter: blur(18px);
  transition: transform .28s ease, border-color .28s ease;
}

.site-header.hidden { transform: translateY(-88%); }
.brand { font-weight: 500; font-size: 15px; letter-spacing: -0.025em; }
.nav { display: flex; gap: 22px; font-size: 13px; color: var(--muted); }
.nav a, .link-row a, .directory a { transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.nav a:hover, .link-row a:hover { color: var(--text); }
.language-switcher { display: flex; gap: 5px; align-items: center; }
.language-switcher button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 6px 7px;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.language-switcher button[aria-pressed="true"] { color: #fff; background: var(--accent); }

.section-shell { max-width: var(--max); margin: 0 auto; padding-left: clamp(20px, 4vw, 56px); padding-right: clamp(20px, 4vw, 56px); }
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  padding-top: 58px;
  padding-bottom: 80px;
}
.hero-image-wrap {
  align-self: center;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd4c8;
  box-shadow: 0 26px 80px rgba(28, 22, 15, 0.16);
}
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}
.eyebrow, .section-kicker, .updated {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h1 {
  margin: 8px 0 0;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.075em;
}
.roles { margin: 30px 0 0; color: var(--muted); font-size: clamp(16px, 2vw, 19px); font-weight: 400; }
.statement { margin: 20px 0 0; font-size: clamp(25px, 3.6vw, 44px); line-height: 1.05; font-weight: 400; letter-spacing: -0.06em; }
.intro { max-width: 650px; margin: 28px 0 0; color: #383633; font-size: clamp(17px, 2vw, 20px); line-height: 1.62; }
.link-row, .contact-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.link-row a { color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 3px; font-size: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 13px 19px;
  font-size: 14px;
  font-weight: 400;
}
.button.primary, .button:hover { background: var(--accent); color: #fff; }
.button.primary:hover { background: transparent; color: var(--text); }

.content-section { padding-top: 96px; padding-bottom: 96px; border-top: 1px solid rgba(23, 23, 23, 0.1); }
.content-section h2 { max-width: 800px; margin: 16px 0 0; font-size: clamp(34px, 5vw, 66px); line-height: 0.98; font-weight: 500; letter-spacing: -0.07em; }
.prose { max-width: 760px; margin-top: 36px; }
.prose.wide { max-width: 880px; }
.prose p, .now-grid p, .now-grid li, .card p { color: #3d3a35; font-size: 18px; line-height: 1.72; }
.prose p + p { margin-top: 24px; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 42px; }
.card { padding: 30px; border: 1px solid rgba(23, 23, 23, 0.12); border-radius: 24px; background: var(--surface); }
.card h3 { margin: 0 0 14px; font-size: 22px; font-weight: 500; letter-spacing: -0.04em; }
.card p { margin: 0; font-size: 16px; }
.now-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; margin-top: 36px; }
.now-grid p { margin: 0; }
.now-grid ul { margin: 0; padding-left: 20px; }
.now-grid li + li { margin-top: 12px; }
.updated { margin-top: 36px; }
.directory { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-top: 42px; }
.directory a { min-height: 150px; border: 1px solid rgba(23, 23, 23, 0.14); border-radius: 22px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.42); }
.directory a:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.directory span { font-size: 17px; font-weight: 500; }
.directory small { color: var(--muted); line-height: 1.45; font-size: 13px; letter-spacing: -0.01em; }
.footer { display: flex; justify-content: space-between; gap: 20px; padding-top: 34px; padding-bottom: 34px; color: var(--muted); font-size: 13px; border-top: 1px solid rgba(23,23,23,.1); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { grid-column: 1 / -1; overflow-x: auto; padding-bottom: 2px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-wrap { max-width: 460px; }
  .cards, .now-grid { grid-template-columns: 1fr; }
  .directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .site-header { padding: 16px 18px; gap: 12px; }
  .brand { font-size: 14px; }
  .language-switcher button { font-size: 11px; padding: 5px 6px; }
  .hero { padding-top: 34px; gap: 34px; }
  .hero-image-wrap { border-radius: 22px; }
  .content-section { padding-top: 72px; padding-bottom: 72px; }
  .directory { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, html { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
