:root {
      --font-body: 'Inter', system-ui, -apple-system, sans-serif;
      --font-heading: 'Playfair Display', serif;
    }

    /* Base */
    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      margin: 0;
    }

    /* Layout spacing */
    section {
      margin-bottom: 4rem;
      padding: 0 1.5rem;
    }

    /* Overskrifter */
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: 0.4px;
      margin-bottom: 0.5em;
    }

    h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }

    h2 {
      font-size: 2rem;
    }

    h3 {
      font-size: 1.5rem;
    }

    /* Brødtekst */
    p {
      margin-bottom: 1em;
      max-width: 65ch;
    }

    /* Navigation */
    nav {
      font-family: var(--font-body);
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    /* UI elementer */
    button,
    input,
    textarea,
    label {
      font-family: var(--font-body);
      font-size: 1rem;
    }

    /* Links */
    a {
      text-decoration: none;
      color: inherit;
    }

    a:hover {
      text-decoration: underline;
    }

    /* Knapper (ekstra roligt look) */
    button, .button {
      padding: 0.6em 1.2em;
      border-radius: 8px;
      border: none;
      background: #1a1a1a;
      color: white;
      font-weight: 500;
      cursor: pointer;
    }

    button:hover {
      opacity: 0.9;
    }