body {
  overflow-y: auto;
  height: auto;
  background: var(--cream);
}

.om-main {
  max-width: 680px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 56px) 24px 96px;
}

/* ── Header ──────────────────────────────────────────── */

.om-header {
  text-align: center;
  margin-bottom: 56px;
}

.om-logo {
  width: 120px;
  height: auto;
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.om-header h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1.2;
}

/* ── Tekst ───────────────────────────────────────────── */

.om-tekst {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.om-ingress {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 400;
}

.om-tekst p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text);
}

/* ── Bok-boks ────────────────────────────────────────── */

.om-bok {
  margin-top: 16px;
  padding: 32px 36px;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.om-bok h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.2;
}

.om-bok p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
}

/* ── E-postskjema ────────────────────────────────────── */

.epost-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.epost-form input {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.epost-form input::placeholder { color: rgba(255,255,255,0.5); }

.epost-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.18);
}

.epost-form button {
  padding: 10px 20px;
  background: var(--rust);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.epost-form button:hover { background: var(--rust-dark); }

.epost-status {
  font-size: 0.8rem;
  margin-top: 8px;
  min-height: 1.2em;
}

.epost-status.ok   { color: #a8f0a8; }
.epost-status.feil { color: #ffb3a0; }

.om-takk {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ── Kontakt ─────────────────────────────────────────── */

.om-kontakt {
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.om-kontakt h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
}

.om-kontakt p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.om-kontakt a {
  color: var(--rust);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.om-kontakt a:hover {
  color: var(--rust-dark);
  text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 520px) {
  .om-header h1 { font-size: 1.6rem; }
  .om-bok { padding: 24px 22px; }
  .om-ingress { font-size: 1rem; }
}
