html {
  box-sizing: border-box;
  color-scheme: light;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #f7f2ea 0%, #eef3f7 52%, #edf6f2 100%);
  color: #1f2933;
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(103, 80, 164, 0.14), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(0, 121, 107, 0.12), transparent 24rem);
}

#doc {
  position: relative;
  width: min(100% - 2rem, 1040px);
  margin: 2rem auto;
  padding: clamp(1.25rem, 3vw, 3rem);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(31, 41, 51, 0.12);
  backdrop-filter: blur(10px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(31, 41, 51, 0.12);
}

.brand {
  color: #172033;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.site-nav a,
#ft a,
a {
  color: #2454a6;
}

.site-nav a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(36, 84, 166, 0.08);
  color: #234070;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(36, 84, 166, 0.16);
}

.eyebrow {
  margin: 0 0 0.4rem;
  color: #667085;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  color: #172033;
  line-height: 1.18;
}

h1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  letter-spacing: -0.06em;
}

h2 {
  margin-top: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.045em;
  text-align: left;
}

h3 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 41, 51, 0.1);
  font-size: 1.2rem;
}

p {
  max-width: 78ch;
}

ul, ol {
  padding-left: 1.25rem;
}

li {
  margin: 0.35rem 0;
}

ul.menu {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 1.4rem 0 0;
}

ul.menu li {
  list-style: none;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: rgba(31, 41, 51, 0.045);
}

.photo {
  max-width: min(100%, 760px);
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(31, 41, 51, 0.18);
}

h1 .photo {
  width: 150px;
  flex: 0 0 auto;
  border-radius: 999px;
}

hr {
  height: 1px;
  border: 0;
  background: rgba(31, 41, 51, 0.12);
}

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 0.4rem 0.9rem 0.4rem 0;
}

#ft {
  margin-top: 2.5rem;
  color: #667085;
  font-size: 0.94rem;
}

#ft center,
center {
  text-align: left;
}

address {
  display: none;
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  #doc {
    width: min(100% - 1rem, 1040px);
    margin: 0.5rem auto;
    border-radius: 20px;
  }

  .site-header,
  h1 {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  h1 .photo {
    width: 120px;
  }

  table, tbody, tr, td {
    display: block;
    width: 100%;
  }
}
