:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #5f5f5f;
  --line: #d9d9d9;
  --soft: #f7f7f5;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(22px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 217, 217, 0.72);
}

.brand {
  display: block;
  width: 150px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: var(--text);
  color: var(--text);
}

.hero {
  min-height: 94vh;
  display: grid;
  place-items: center;
  padding: 134px 24px 84px;
}

.hero-inner {
  width: min(820px, 100%);
  text-align: center;
}

.kicker,
.section-label {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin: 20px 0 12px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
}

.credential {
  margin-bottom: 2px;
  color: var(--text);
  font-size: 15px;
}

.subtitle {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 19px);
}

.rule {
  width: min(360px, 62vw);
  height: 1px;
  margin: 42px auto 36px;
  background: var(--line);
}

.statement {
  width: min(650px, 100%);
  margin: 0 auto 38px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--text);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
  background: var(--text);
  color: var(--bg);
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(78px, 11vw, 142px) 0;
  border-top: 1px solid var(--line);
}

.position-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(40px, 8vw, 112px);
  align-items: start;
  margin-top: 34px;
}

.position h2,
.contact h2,
.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.04;
}

.position p {
  max-width: 450px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.action-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.action-list article {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.action-list h3,
.card h3 {
  margin-bottom: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.action-list p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(260px, 0.7fr);
  gap: clamp(36px, 8vw, 96px);
  margin-top: 34px;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 32px 26px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.card-featured {
  min-height: 430px;
  margin-top: -20px;
  border-top: 1px solid var(--text);
  background: var(--soft);
}

.card span {
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 12px;
}

.card p {
  margin: 22px 0 0;
  color: var(--muted);
}

.card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.card strong {
  display: block;
  margin-top: auto;
  padding-top: 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process li {
  min-height: 142px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.process span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
}

.contact-panel {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-panel a {
  display: flex;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-panel a:not(.button):hover,
.contact-panel a:not(.button):focus-visible {
  color: var(--text);
}

.contact-panel .button {
  margin-top: 28px;
  color: var(--text);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--text);
  color: var(--bg);
}

.footer {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1060px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card,
  .card-featured {
    min-height: 340px;
    margin-top: 0;
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    gap: 24px;
  }

  .brand {
    width: 108px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .position-grid,
  .contact-grid,
  .section-heading,
  .action-list article {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section {
    width: min(100% - 32px, var(--max));
  }

  .cards,
  .process {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 300px;
    padding: 28px 22px;
  }

  .process li {
    min-height: 118px;
  }
}
