/* LORELANE LTD — company site. One file, no build step, no JS. */

:root {
  --ink: #1c1c1e;
  --ink-soft: #4a4a4f;
  --ink-faint: #76767c;
  --paper: #fcfcfa;
  --line: #e4e4e0;
  --accent: #2f4a43;        /* muted deep green — serious, not clinical */
  --accent-soft: #eef2f0;
  --measure: 42rem;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

/* ---- layout ---- */

header, main, footer {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 1.25rem;
}

header {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

main {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

footer {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--ink-faint);
}

/* ---- header ---- */

.wordmark {
  font-weight: 650;
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}

nav {
  margin-left: auto;
  display: flex;
  gap: 1.25rem;
}

nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9375rem;
}

nav a:hover { color: var(--ink); text-decoration: underline; }

nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* ---- type ---- */

h1 {
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.1875rem;
  font-weight: 650;
  margin: 2.25rem 0 0.5rem;
}

h3 {
  font-size: 1rem;
  font-weight: 650;
  margin: 1.5rem 0 0.25rem;
}

p, ul { margin: 0 0 1rem; }

ul { padding-left: 1.25rem; }

li { margin-bottom: 0.35rem; }

a { color: var(--accent); }

.lead {
  font-size: 1.1875rem;
  color: var(--ink-soft);
}

.muted { color: var(--ink-faint); font-size: 0.9375rem; }

/* ---- components ---- */

.card {
  background: var(--accent-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.card h2:first-child, .card h3:first-child { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

dl.contact-list dt {
  font-weight: 650;
  margin-top: 1.25rem;
}

dl.contact-list dd {
  margin: 0.15rem 0 0;
}

footer .imprint { margin-bottom: 0.5rem; }
footer p { margin-bottom: 0.5rem; }

@media (max-width: 480px) {
  nav { margin-left: 0; }
  h1 { font-size: 1.5rem; }
}
