:root {
  --background: #ffffff;
  --foreground: #262626;
  --muted: #858585;
  --border: #ebebeb;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--muted); }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.header,
.footer {
  width: 100%;
  padding: 2rem 1.5rem;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
h1 {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.est,
.label,
.locations {
  font-family: var(--font-mono);
  color: var(--muted);
}
.est,
.label {
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.est { display: none; }

.main {
  flex: 1;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content { padding: 3rem 0; }
.hero h2 {
  margin: 0;
  max-width: 48rem;
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.hero p {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.625;
  font-weight: 300;
  color: var(--muted);
}
.short-rule {
  width: 3rem;
  margin: 3rem 0;
  background: rgba(38, 38, 38, 0.2) !important;
}
.rule {
  height: 1px;
  background: var(--border);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.info-block { display: flex; flex-direction: column; gap: 1rem; }
.info-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.info-text a {
  border-bottom: 1px solid transparent;
  padding-bottom: 0.125rem;
  transition: color .15s ease, border-color .15s ease;
}
.info-text a:hover { border-color: var(--muted); }

.footer { margin-top: auto; }
.footer-row {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-left > a {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: color .15s ease;
}
.copyright {
  font-size: 0.625rem;
  line-height: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.locations {
  font-size: 0.75rem;
  line-height: 1rem;
}

@media (min-width: 768px) {
  .header, .footer { padding-left: 3rem; padding-right: 3rem; }
  .est { display: block; }
  .main { padding-left: 3rem; padding-right: 3rem; }
  .content { padding: 4rem 0; }
  .hero h2 { font-size: 2.25rem; }
  .hero p { font-size: 1.25rem; }
  .short-rule { margin: 4rem 0; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .footer-row { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}

@media (min-width: 1024px) {
  .header, .footer { padding-left: 6rem; padding-right: 6rem; }
  .main { padding-left: 6rem; padding-right: 6rem; }
  .hero h2 { font-size: 3rem; }
}
