:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui,
    sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: #0b0a09;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #0b0a09;
  color: #f2efea;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible {
  border-radius: 6px;
  outline: 3px solid #d9c9a8;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f2efea;
  color: #17181b;
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.site-footer,
main {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 650;
}

/* The icon, in miniature: settled lines and the caret standing ready. */
.brand-mark {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #17140f;
  border: 1px solid rgba(242, 239, 234, 0.16);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 1px;
  background: rgba(242, 239, 234, 0.42);
}

.brand-mark::before {
  top: 7px;
  left: 6px;
  width: 13px;
  height: 2px;
  box-shadow: 0 4px 0 rgba(242, 239, 234, 0.42);
}

.brand-mark::after {
  top: 17px;
  left: 6px;
  width: 8px;
  height: 2px;
  background: #f2efea;
}

nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
  color: rgba(242, 239, 234, 0.62);
}

nav a[aria-current="page"] {
  color: #f2efea;
}

nav a:hover {
  color: #f2efea;
}

main {
  padding: 24px 0 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: rgba(242, 239, 234, 0.5);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 680;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  margin: 48px 0 12px;
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

h3 {
  margin: 28px 0 8px;
  font-size: 17px;
  font-weight: 650;
}

p {
  margin: 0 0 16px;
  color: rgba(242, 239, 234, 0.82);
}

.lede {
  font-size: 19px;
  color: rgba(242, 239, 234, 0.92);
}

ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: rgba(242, 239, 234, 0.82);
}

li {
  margin-bottom: 8px;
}

.hero {
  padding: 40px 0 8px;
}

.cta {
  margin: 28px 0 10px;
}

/* The one place on the page that asks for anything. */
.button {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background: #f2efea;
  color: #17140f;
  font-size: 16px;
  font-weight: 640;
  letter-spacing: -0.01em;
  transition: transform 140ms ease, opacity 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.cta-note {
  margin: 0 0 8px;
  color: rgba(242, 239, 234, 0.55);
  font-size: 14px;
}

.card {
  margin: 32px 0;
  padding: 24px 26px;
  border: 1px solid rgba(242, 239, 234, 0.12);
  border-radius: 18px;
  background: rgba(242, 239, 234, 0.03);
}

.card p:last-child {
  margin-bottom: 0;
}

.contact {
  font-size: 19px;
  font-weight: 600;
}

.site-footer {
  padding: 32px 0 56px;
  border-top: 1px solid rgba(242, 239, 234, 0.12);
  color: rgba(242, 239, 234, 0.5);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer a:hover {
  color: #f2efea;
}

@media (max-width: 540px) {
  .site-header {
    min-height: 0;
    padding: 20px 0 4px;
  }

  main {
    padding-top: 12px;
  }
}
