:root {
  color-scheme: light;
  --ink: #202231;
  --muted: #686978;
  --faint: #92929d;
  --paper: #f5f0e8;
  --sheet: rgba(255, 255, 255, 0.58);
  --line: rgba(32, 34, 49, 0.12);
  --accent: #ba7258;
  --shadow: 0 24px 70px rgba(41, 37, 52, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(225, 186, 153, 0.3), transparent 34rem),
    radial-gradient(circle at 100% 25%, rgba(144, 153, 179, 0.18), transparent 30rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-color: rgba(32, 34, 49, 0.32);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

.shell {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 26px 0 72px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  margin-bottom: 54px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-decoration: none;
}

.mark {
  width: 21px;
  height: 21px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
  opacity: 0.72;
}

.mark::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 50%;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(42px, 8vw, 68px);
  line-height: 1.04;
}

.lede {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.meta {
  margin: 20px 0 0;
  color: var(--faint);
  font-size: 13px;
}

.card {
  margin-top: 52px;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--sheet);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.section + .section {
  margin-top: 40px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 12px;
  font-size: 27px;
  line-height: 1.2;
}

p,
ul {
  margin: 0;
  color: var(--muted);
}

p + p,
p + ul,
ul + p {
  margin-top: 14px;
}

ul {
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.contact {
  display: inline-flex;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.contact:hover {
  color: #fff;
  background: var(--accent);
}

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

.tile {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--sheet);
  text-decoration: none;
}

.tile h2 {
  margin-bottom: 8px;
}

.tile p {
  font-size: 15px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding: 0 4px;
  color: var(--faint);
  font-size: 12px;
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 760px);
    padding-top: 14px;
  }

  .nav {
    margin-bottom: 38px;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .card {
    margin-top: 38px;
    border-radius: 20px;
  }

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

  .footer {
    flex-direction: column;
  }
}
