/* 3reeq — v0 provisional styles. Palette is v1 earth-language placeholders;
   replace when v2's real visual language lands. Tune freely. */

:root {
  --bg: #ede4d3; /* gypsum cream — page background */
  --ink: #2b2622; /* basalt charcoal — main text */
  --earth: #b5551d; /* mud-brick terracotta — accent */
  --muted: #6f6456; /* faded earth — secondary text */
  --footer-bg: #e3d7c2; /* footer band — a step off from --bg; tune it */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, sans-serif;
  line-height: 1.5;
  text-align: center;
}

header {
  margin-top: auto;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.logo {
  width: 4rem;
  height: auto;
  padding: 0.75rem;
  background: var(--footer-bg);
  border-radius: 1rem;
}
main {
  margin-bottom: auto;
  padding: 0 1.25rem;
}

footer {
  width: 100%;
  background: var(--footer-bg);
  padding: 1.5rem 1.25rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  letter-spacing: 0.02em;
  color: var(--earth);
}

h2 {
  margin: 0;
  max-width: 30ch;
  font-weight: 400;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--muted);
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
}

footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--ink);
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: var(--earth);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
