:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #dededb;
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: #dededb;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

.card {
  width: min(100%, 560px);
  min-height: 350px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  background: #f8f8f5;
  border: 1px solid #b8b8b3;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

h1 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(29px, 6vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.email { margin-top: 24px; font-size: 15px; }

.footer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  padding-top: 16px;
  border-top: 1px solid #cfcfca;
  color: #555;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer nav {
  display: flex;
  gap: 12px;
  font-size: 9px;
}
.footer nav [aria-current="page"] { color: #777; text-decoration: none; }
.legal-name { font-size: 9px; color: #777; }
.austin { font-size: 9px; color: #aaa; }

.document { min-height: 0; }
.document .main { justify-content: flex-start; padding: 42px 0; }
.document h1 { font-size: 32px; }
.document h1 + p { margin-top: 18px; }
.document h2 { margin: 24px 0 6px; font-size: 13px; letter-spacing: 0.02em; text-transform: uppercase; }
.document p { margin: 0; color: #666; font-size: 14px; line-height: 1.5; }

.contact { margin-top: 24px; }
.contact-row { display: grid; grid-template-columns: 80px 1fr; gap: 16px; padding: 9px 0; font-size: 14px; }
.contact-row span { color: #666; }
.placeholder { color: #666; font-weight: 400; }

@media (max-width: 520px) {
  body { padding: 12px; }
  .card { min-height: 330px; padding: 26px; }
}
