/* ============================================================
   Fonte — self-hosted (hentet fra Google Fonts, Apache 2.0 / OFL)
   ============================================================ */

/* Ubuntu Medium — latin-ext (dækker æ, ø, å og andre latinske tegn) */
@font-face {
  font-family: 'Ubuntu';
  src: url('/assets/fonts/ubuntu-medium-latin-ext.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Ubuntu Medium — latin */
@font-face {
  font-family: 'Ubuntu';
  src: url('/assets/fonts/ubuntu-medium-latin.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Inter (variable font — dækker både 400 og 500) — latin-ext */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter (variable font — dækker både 400 og 500) — latin */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ============================================================
   CSS-variabler — light mode (default)
   ============================================================ */

:root {
  --color-background:    #FAF7F2;
  --color-text:          #1A1A1A;
  --color-accent:        #C0651A;
  --color-muted:         rgba(26, 26, 26, 0.55);
  --color-border-subtle: rgba(26, 26, 26, 0.2);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-background:    #1A1A1A;
    --color-text:          #F5F1EB;
    --color-accent:        #C0651A;
    --color-muted:         rgba(245, 241, 235, 0.55);
    --color-border-subtle: rgba(245, 241, 235, 0.2);
  }
}


/* ============================================================
   Reset
   ============================================================ */

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


/* ============================================================
   Base
   ============================================================ */

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

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
}


/* ============================================================
   Layout
   ============================================================ */

main {
  padding: 80px 80px 60px;
}

.content {
  max-width: 560px;
}


/* ============================================================
   Logo
   ============================================================ */

.logo {
  display: block;
  margin-bottom: 10px;
  color: var(--color-text);
}

.logo-wordmark {
  display: block;
  height: 64px;
  width: auto;
}


/* ============================================================
   Undertitel
   ============================================================ */

.subtitle {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 72px;
}


/* ============================================================
   Brødtekst
   ============================================================ */

.body-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 40px;
}

.list-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 12px;
}


/* ============================================================
   Services-liste
   ============================================================ */

.services {
  list-style: none;
  font-size: 17px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 56px;
}

.services li {
  padding-left: 22px;
  position: relative;
}

.services li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-text);
}


/* ============================================================
   Kontakt
   ============================================================ */

address {
  font-style: normal;
}

.email {
  display: inline-block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  margin-bottom: 8px;
}

.email:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-muted);
  margin-bottom: 20px;
}


/* ============================================================
   Sociale ikoner
   ============================================================ */

.socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0.5px solid var(--color-border-subtle);
  border-radius: 50%;
  color: var(--color-text);
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.social-link:hover {
  border-color: var(--color-text);
}

.social-link svg {
  display: block;
  fill: var(--color-text);
}


/* ============================================================
   Signatur-rune
   ============================================================ */

.signature {
  margin-top: 56px;
  padding-bottom: 80px;
}


/* ============================================================
   Mobil
   ============================================================ */

@media (max-width: 600px) {
  main {
    padding: 48px 32px 40px;
  }

  .logo-wordmark {
    height: 52px;
  }

  .subtitle {
    margin-bottom: 56px;
  }

  .body-text,
  .list-intro,
  .services {
    font-size: 16px;
  }

  .email {
    font-size: 18px;
  }

  .signature {
    margin-top: 48px;
    padding-bottom: 60px;
  }
}
