:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #667085;
  --line: #d9e0e8;
  --paper: #f7f9fb;
  --accent: #2b7a78;
  --accent-soft: #e0f2ef;
  --warm: #b7791f;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.nav {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

main,
.footer-inner {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 40px;
  align-items: center;
  padding: 64px 0 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.page-title {
  padding: 52px 0 26px;
}

.page-title h1 {
  font-size: clamp(34px, 4.5vw, 50px);
}

.intro {
  margin: 22px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.photo {
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(43, 122, 120, 0.1), rgba(183, 121, 31, 0.1)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 520'%3E%3Crect width='720' height='520' fill='%23e7edf2'/%3E%3Cpath d='M0 400c90-54 154-80 238-68 77 11 125 54 210 53 76-1 128-37 272-84v219H0z' fill='%2397b7bd'/%3E%3Cpath d='M0 438c92-33 171-46 252-29 64 13 109 43 179 42 75-1 134-38 289-78v147H0z' fill='%235f8f95'/%3E%3Ccircle cx='570' cy='108' r='54' fill='%23f3c56f'/%3E%3Cpath d='M110 160h208v150H110z' fill='%23ffffff' opacity='.72'/%3E%3Cpath d='M142 195h143M142 226h112M142 257h151' stroke='%23788796' stroke-width='12' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.12);
}

.section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.small {
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.card h3,
.note h3,
.article h2 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0;
}

.card p,
.note p,
.article p,
.article li {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.notes {
  display: grid;
  gap: 12px;
}

.note {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.note:first-child {
  border-top: 0;
}

.date {
  color: var(--muted);
  font-size: 14px;
}

.article {
  max-width: 760px;
  padding-bottom: 44px;
}

.article p,
.article ul {
  margin: 0 0 18px;
}

.article h2 {
  margin-top: 30px;
  font-size: 22px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .links {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .photo {
    min-height: 240px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .note {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
