:root {
  --ink: #1a1a17;
  --bg: #fafaf6;
  --muted: #6b6b66;
  --accent: #3d4a30;
  --rule: #e5e3dc;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font: 17px/1.6 "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

header, main, footer {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding-top: 80px;
  padding-bottom: 56px;
}

.lockup {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 24px -8px;
  text-decoration: none;
  color: inherit;
}

.audiences {
  display: flex;
  gap: 28px;
  margin: 0 0 32px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.audiences a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: color 0.15s;
}

.audiences a:hover { color: var(--accent); }

.audiences a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.lang-switch {
  position: absolute;
  top: 32px;
  right: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.lang-switch a {
  color: var(--muted);
  text-decoration: none;
  padding: 2px 4px;
  transition: color 0.15s;
}

.lang-switch a:hover { color: var(--accent); }

.lang-switch a.active { color: var(--accent); }

.lang-switch .sep { margin: 0 2px; opacity: 0.5; }

header { position: relative; }

main ul, main ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

main li {
  margin-bottom: 8px;
}

main li:last-child {
  margin-bottom: 0;
}

.mark {
  display: block;
  width: 88px;
  height: auto;
  flex: none;
}

h1 {
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.lede {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  max-width: 56ch;
}

main section {
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}

h2 {
  font-family: system-ui, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 32px;
}

main p {
  margin: 0 0 16px;
}

main p:last-child { margin-bottom: 0; }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 28px;
}

article img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  background: #eee;
}

.meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 4px !important;
}

article h3 {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 24px;
  margin: 0 0 8px;
  font-weight: 500;
}

article p:last-of-type {
  font-size: 15.5px;
  color: #2e2e2a;
  line-height: 1.55;
}

dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 14px;
  column-gap: 24px;
  margin: 0;
}

dt {
  font-weight: 600;
  color: var(--ink);
}

dd {
  margin: 0;
}

.cta {
  margin-top: 24px !important;
}

.cta a {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  text-decoration: none;
  padding-bottom: 2px;
}

.cta a:hover {
  color: var(--accent);
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}

.apply-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apply-form label > span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 600;
}

.apply-form input,
.apply-form textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 12px 14px;
  width: 100%;
}

.apply-form textarea {
  resize: vertical;
  min-height: 120px;
}

.apply-form input:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.apply-form button {
  align-self: flex-start;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--accent);
  padding: 2px 0;
  margin-top: 8px;
  cursor: pointer;
}

.apply-form button:hover {
  color: var(--accent);
}

details { margin-top: 12px; }
details summary {
  cursor: pointer;
  font-size: 13px;
  font-family: var(--sans);
  letter-spacing: 0.06em;
  color: var(--muted);
  list-style: none;
  display: inline-block;
}
details summary::-webkit-details-marker { display: none; }
details summary::before { content: '+ '; }
details[open] summary::before { content: '− '; }
details > p, details > ul { margin-top: 12px; font-size: 15px; color: #444; }
details > ul { padding-left: 1.2rem; }
details > ul li { margin-bottom: 6px; }

footer {
  padding-top: 32px;
  padding-bottom: 64px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (max-width: 600px) {
  header { padding-top: 56px; padding-bottom: 40px; }
  .lockup { gap: 14px; margin-left: -4px; margin-bottom: 24px; }
  .mark { width: 64px; }
  h1 { font-size: 48px; }
  .lede { font-size: 18px; }
  main section { padding: 40px 0; }
  .grid { grid-template-columns: 1fr; gap: 32px; }
  dl { grid-template-columns: 1fr; row-gap: 4px; }
  dl dd { margin-bottom: 14px; }
}
