/* =============================================================
   Lirentzia · site.css
   Layout for the multi-page lirentzia.com site.
   Tokens and element baselines come from colors_and_type.css.
   This file adds layout only.
   ============================================================= */

body { background: var(--lz-white); }

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 64px 96px;
}

/* -- Masthead ------------------------------------------------- */
.wordmark {
  font-family: var(--lz-serif);
  font-weight: 400;
  font-size: clamp(64px, 9vw, 96px);
  line-height: 1;
  letter-spacing: 0.002em;
  color: var(--lz-ink);
  margin: 0 0 18px;
}
.wordmark a {
  color: inherit;
  text-decoration: none;
}
.wordmark a:hover { text-decoration: none; }

.rule {
  border: 0;
  height: 0.5px;
  background: var(--lz-oxblood);
  width: 96px;
  margin: 0 0 18px;
}

.metaline {
  font-family: var(--lz-sans);
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--lz-text-muted);
  margin: 0 0 24px;
}

/* -- Navigation ----------------------------------------------- */
.nav {
  font-family: var(--lz-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lz-ink);
  margin: 0 0 64px;
}
.nav a {
  font-weight: 400;
  color: var(--lz-ink);
}
.nav .current {
  font-weight: 500;
  color: var(--lz-ink);
  text-decoration: none;
}
.nav .sep {
  margin: 0 8px;
  color: var(--lz-text-muted);
}

/* -- Body sections -------------------------------------------- */
section { margin-bottom: 56px; }

h2 {
  font-weight: 500;
  margin: 0 0 20px;
}

.address {
  font-family: var(--lz-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--lz-ink);
  margin: 0;
  max-width: none;
}

/* -- Footer --------------------------------------------------- */
.site-footer {
  margin-top: 96px;
  padding-top: 24px;
  border-top: 0.5px solid var(--lz-oxblood);
  text-align: center;
  font-family: var(--lz-sans);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--lz-text-muted);
}

/* -- Responsive ----------------------------------------------- */
@media (max-width: 768px) {
  .page { padding: 64px 32px 64px; }
  .nav { margin-bottom: 48px; }
  section { margin-bottom: 36px; }
  .site-footer { margin-top: 72px; }
}
@media (max-width: 400px) {
  .nav { letter-spacing: 0.10em; }
}
