:root {
  --paper: oklch(0.987 0.005 105);
  --ink: oklch(0.27 0.014 120);
  --accent: oklch(0.53 0.105 42);
  --accent-soft: oklch(0.85 0.05 42);
  --rule: oklch(0.905 0.01 120);
  --serif: Newsreader, Georgia, serif;
  --sans: Karla, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

img { display: block; max-width: 100%; }

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Hero */

.hero {
  margin: 0 0 56px;
  width: 100%;
  position: relative;
}

.hero img {
  width: 100%;
  height: 100vh;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 45%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(20, 24, 18, 0.28), rgba(20, 24, 18, 0.34));
}

.hero h1 {
  margin: 0;
  width: 100%;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(68px, 13vw, 128px);
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: oklch(0.99 0.004 105);
  text-align: center;
  text-wrap: pretty;
}

/* Column */

.column {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.005em;
}

p { margin: 0; text-wrap: pretty; }

.lead { font-size: 20px; line-height: 1.6; }

.body { font-size: 19px; line-height: 1.7; }

.rule { height: 1px; background: var(--rule); }

section { display: flex; flex-direction: column; gap: 22px; }

.section-audience { padding: 0 0 44px; gap: 18px; }

.section-facts,
.section-contact {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px 48px;
}

.section-facts { margin: 0 0 52px; }

.section-facts > div,
.section-contact > div {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-contact > div { gap: 22px; }

.section-method { padding: 44px 0 52px; }

.section-about { padding: 0 0 48px; gap: 24px; }

.section-contact { padding: 0 0 44px; }

/* Figures */

figure { margin: 0; }

.full { margin-left: -20px; margin-right: -20px; }

.figure-tools { margin: 4px -20px 8px; }

.figure-inversion {
  margin: 10px -20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.figure-inversion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 82%;
  transform: scale(1.3);
  transform-origin: 50% 82%;
}

.figure-seated {
  margin: 8px -20px 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.figure-seated img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* About */

.about-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
}

.portrait {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 22%;
}

.about-row p {
  flex: 1 1 280px;
  min-width: 260px;
}

.quote {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.5;
  font-style: italic;
  color: var(--accent);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  font-size: 19px;
  line-height: 1.7;
}

/* Footer */

.footer {
  width: 100%;
  margin-top: 64px;
  padding: 36px 20px 56px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: center;
}

.footer-inner {
  width: 100%;
  max-width: 760px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 1.6;
}

.footer-inner img { width: 84px; height: auto; }

.footer-inner span { text-align: right; }
