/* limowole — shared site styles */

:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --hairline: rgba(255, 255, 255, 0.1);
  --card-border: rgba(255, 255, 255, 0.4);
  --col-width: 604px;
  --pad: 26px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: "effra", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

a {
  color: inherit;
}

/* Centered column with faint vertical rails */
.shell {
  display: flex;
  flex-direction: column;
  max-width: var(--col-width);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
}

/* Padded content region (rails stay flush to the shell edges) */
.shell__body {
  padding: 56px var(--pad) 0;
}

.wordmark {
  font-family: "omnium", "effra", sans-serif;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.005em;
  font-synthesis: none;
}

/* Footer — border spans the full column width, content stays padded */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--hairline);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 32px var(--pad) 26px;
}

.footer__addr {
  font-style: normal;
  opacity: 0.35;
  font-size: 13px;
  line-height: 1.4;
}

.footer__name {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}

.footer__links a {
  color: var(--muted);
  font-size: clamp(14px, 3.6vw, 16px);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--fg);
}

@media (max-width: 640px) {
  :root {
    --pad: 22px;
  }
  .shell__body {
    padding-top: 48px;
  }
}
