:root {
  --grey: #6e6e6e;
  --grey-mid: #565654;
  --grey-dark: #3f3f3f;
  --gold: #c59f48;
  --bg: #ffffff;
  --muted: #8a8a8a;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--grey-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  line-height: 1.6;
}

.card {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto 2.5rem;
  display: block;
}

.badge {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--grey-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h1 .nytt {
  color: var(--gold);
  font-style: italic;
}

.lead {
  font-size: 1.05rem;
  color: var(--grey-mid);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact {
  margin-top: 2.5rem;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  text-align: left;
  width: 100%;
  max-width: 340px;
  cursor: pointer;
}

.contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(197, 159, 72, 0.12);
  transition: background 0.2s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(197, 159, 72, 0.22);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-value {
  font-size: 0.92rem;
  color: var(--grey-dark);
  overflow-wrap: anywhere;
  transition: color 0.15s ease;
}

.contact-item:hover .contact-value {
  color: var(--gold);
}

footer {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 520px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.foot-copy {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--muted);
}
