@font-face {
  font-family: "Bauhaus 93";
  src: url("assets/fonts/BAUHS93.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Std";
  src: url("assets/fonts/neo-sans-std/Neo Sans Std Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Std";
  src: url("assets/fonts/neo-sans-std/Neo Sans Std Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Std";
  src: url("assets/fonts/neo-sans-std/Neo Sans Std Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Std";
  src: url("assets/fonts/neo-sans-std/Neo Sans Std Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brown: #574f4e;
  --brown-deep: #332e2d;
  --deep-green: #223f35;
  --green: #a7bb79;
  --green-deep: #71804f;
  --beige: #b7a379;
  --paper: #fbfaf7;
  --paper-deep: #f3efe8;
  --mist: #edf2e7;
  --blue-grey: #dce7e6;
  --ink: #2f2a29;
  --muted: #6f6765;
  --line: #ded8cf;
  --white: #ffffff;
  --display-font: "Bauhaus 93", "ITC Bauhaus", Blippo, "Arial Rounded MT Bold", Arial, sans-serif;
  --body-font: "Neo Sans Std", Arial, Helvetica, sans-serif;
  --page-padding: clamp(20px, 6vw, 88px);
  --section-space: clamp(68px, 9vw, 128px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--brown-deep);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--green-deep);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 124px;
  padding: 10px clamp(20px, 4vw, 60px);
  background: rgba(251, 250, 247, 0.98);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: min(152px, 38vw);
}

.brand img,
.site-footer img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 32px);
  color: var(--brown);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--brown-deep);
}

.site-nav a[aria-current="page"] {
  color: var(--brown-deep);
  text-decoration: underline;
  text-decoration-color: var(--beige);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.lab-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 34px);
  min-height: 54px;
  padding: 10px var(--page-padding);
  overflow-x: auto;
  background: var(--deep-green);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  white-space: nowrap;
}

.lab-nav span {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lab-nav a {
  font-weight: 800;
  text-decoration: none;
}

.lab-nav a:hover,
.lab-nav a[aria-current="page"] {
  color: var(--white);
}

.lab-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

main {
  overflow: hidden;
}

.eyebrow,
.section-kicker,
.card-label {
  margin-bottom: 12px;
  color: var(--brown);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  color: var(--brown);
  font-size: clamp(2.35rem, 5vw, 5.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 1.35rem;
  line-height: 1.15;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  line-height: 1.5;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 84px);
  min-height: calc(100vh - 124px);
  padding: clamp(58px, 7vw, 104px) var(--page-padding) clamp(66px, 8vw, 110px);
  background:
    radial-gradient(circle at 73% 36%, rgba(167, 187, 121, 0.14), transparent 28%),
    linear-gradient(125deg, var(--paper) 5%, #ffffff 58%, var(--mist));
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 9px;
  background: var(--beige);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--brown);
}

.hero-title-label {
  display: block;
  max-width: 680px;
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 4.2vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero-title-word {
  display: block;
  font-family: var(--display-font);
  font-size: clamp(6rem, 13vw, 12.5rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--brown);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--brown);
  color: var(--white);
}

.button.primary:hover {
  background: var(--brown-deep);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.45);
  color: var(--brown);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-line span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 0 0 5px rgba(167, 187, 121, 0.22);
}

.hero-mark {
  position: relative;
  min-height: 570px;
}

.hero-arch {
  position: absolute;
  top: -5%;
  right: -25%;
  width: min(820px, 62vw);
  max-width: none;
  opacity: 0.94;
}

.hero-compass {
  position: absolute;
  right: 0;
  bottom: 2%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  width: min(430px, 92%);
  background: rgba(251, 250, 247, 0.9);
  border: 1px solid rgba(87, 79, 78, 0.14);
  box-shadow: 0 22px 70px rgba(51, 46, 45, 0.12);
  backdrop-filter: blur(8px);
}

.hero-compass div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-compass div:nth-child(2n) {
  border-right: 0;
}

.hero-compass div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.hero-compass strong {
  color: var(--green-deep);
  font-family: var(--display-font);
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 0.8;
}

.hero-compass span {
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 800;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 var(--page-padding);
  background: var(--brown);
  color: var(--white);
}

.fact-strip article {
  display: grid;
  align-content: center;
  min-height: 146px;
  padding: 28px clamp(18px, 3vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.fact-strip article:first-child {
  padding-left: 0;
}

.fact-strip article:last-child {
  padding-right: 0;
  border-right: 0;
}

.fact-strip span {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fact-strip strong {
  max-width: 360px;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.2;
}

.story-section,
.relation-section,
.contact-section,
.type-direction {
  display: grid;
  grid-template-columns: minmax(270px, 0.76fr) minmax(360px, 1.24fr);
  gap: clamp(38px, 8vw, 120px);
  padding: var(--section-space) var(--page-padding);
  border-bottom: 1px solid var(--line);
}

.section-heading-block {
  max-width: 590px;
}

.story-copy {
  max-width: 780px;
}

.story-copy > p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
}

.story-copy .story-lead {
  color: var(--ink);
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
}

blockquote {
  position: relative;
  margin: clamp(36px, 5vw, 62px) 0 0;
  padding: 30px 0 0 clamp(28px, 4vw, 56px);
  border-top: 1px solid var(--beige);
}

blockquote::before {
  content: "“";
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

blockquote p {
  max-width: 700px;
  margin: 0;
  color: var(--brown);
  font-size: clamp(1.4rem, 2.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.journey-section,
.values-section,
.audiences-section,
.format-section,
.neo-logo-section,
.type-test-section {
  padding: var(--section-space) var(--page-padding);
  border-bottom: 1px solid var(--line);
}

.journey-section {
  background: var(--mist);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.64fr);
  align-items: end;
  gap: clamp(34px, 7vw, 100px);
  margin-bottom: clamp(38px, 6vw, 74px);
}

.section-heading > p,
.section-heading > div + p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.25rem);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(87, 79, 78, 0.2);
}

.journey-grid article {
  min-height: 280px;
  padding: 34px clamp(20px, 3vw, 44px);
  border-right: 1px solid rgba(87, 79, 78, 0.2);
}

.journey-grid article:first-child {
  padding-left: 0;
}

.journey-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.journey-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.journey-grid p {
  color: var(--muted);
}

.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.value-letter {
  display: block;
  margin-bottom: clamp(38px, 5vw, 74px);
  color: var(--green);
  font-family: var(--display-font);
  font-size: clamp(4.8rem, 7vw, 7.5rem);
  font-weight: 400;
  line-height: 0.7;
}

.value-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.value-card p {
  color: var(--muted);
}

.value-card .value-question {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--brown);
  font-weight: 700;
}

.practice-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(46px, 9vw, 140px);
  padding: var(--section-space) var(--page-padding);
  background: var(--deep-green);
  color: var(--white);
}

.practice-section .section-kicker {
  color: var(--green);
}

.practice-section h2 {
  color: var(--white);
}

.practice-intro > p:last-child {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 1.1rem;
}

.question-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 106px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.question-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.question-list span {
  color: var(--green);
  font-family: var(--display-font);
  font-size: 3.2rem;
  line-height: 0.8;
}

.question-list p {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  font-weight: 700;
  line-height: 1.35;
}

.audiences-section {
  background: var(--paper-deep);
}

.audiences-section .section-heading-block {
  margin-bottom: clamp(38px, 6vw, 72px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-grid article {
  min-height: 300px;
  padding: clamp(30px, 4vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
}

.audience-grid article:last-child {
  background: var(--mist);
}

.audience-grid h3 {
  max-width: 540px;
  margin-top: clamp(46px, 7vw, 88px);
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  letter-spacing: -0.025em;
}

.audience-grid p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.relation-section {
  align-items: center;
  background: var(--white);
}

.relation-mark {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--brown);
  font-family: var(--display-font);
  font-size: clamp(3.4rem, 7vw, 7.8rem);
  line-height: 0.8;
}

.relation-mark b {
  color: var(--beige);
  font-family: var(--body-font);
  font-size: 0.52em;
  font-weight: 400;
}

.relation-copy p:last-child {
  max-width: 680px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
}

.contact-section {
  background: var(--mist);
}

.contact-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.contact-note {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(87, 79, 78, 0.18);
  color: var(--brown);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 34px var(--page-padding);
  color: var(--muted);
  font-size: 0.93rem;
}

.site-footer img {
  width: 184px;
}

.site-footer div {
  text-align: right;
}

.site-footer strong {
  color: var(--brown);
}

.site-footer p {
  margin: 4px 0 0;
}

/* Visuelle arbejdsformater */

.formats-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  align-items: end;
  gap: clamp(34px, 7vw, 100px);
  min-height: 510px;
  padding: clamp(68px, 9vw, 128px) var(--page-padding);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0.74)),
    linear-gradient(135deg, var(--mist), var(--blue-grey));
  border-bottom: 1px solid var(--line);
}

.formats-hero h1 {
  margin-bottom: 24px;
  color: var(--brown);
  font-family: var(--display-font);
  font-size: clamp(5.2rem, 12vw, 11rem);
  font-weight: 400;
  line-height: 0.75;
}

.format-status {
  margin: 0;
  padding-left: 22px;
  border-left: 4px solid var(--green);
  color: var(--muted);
}

.format-status span {
  display: block;
  margin-bottom: 7px;
  color: var(--brown);
  font-weight: 900;
}

.format-section {
  background: var(--white);
}

.format-section.tinted {
  background: var(--paper);
}

.format-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(360px, 1.32fr);
  gap: 18px;
}

.format-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.format-card {
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.format-card h3 {
  margin-bottom: 24px;
  font-size: 1rem;
}

.format-card img {
  display: block;
  width: 100%;
  max-height: 600px;
  object-fit: contain;
}

.logo-preview {
  aspect-ratio: 1.28;
}

.print-preview {
  aspect-ratio: 1.92;
}

.light-preview {
  background:
    linear-gradient(90deg, rgba(222, 216, 207, 0.4) 1px, transparent 1px),
    linear-gradient(180deg, rgba(222, 216, 207, 0.4) 1px, transparent 1px),
    var(--white);
  background-size: 28px 28px;
}

.dark-preview {
  background: var(--deep-green);
}

.dark-preview h3,
.red-preview h3 {
  color: var(--white);
}

.red-preview {
  background: #c8212b;
}

.icon-card {
  align-content: center;
}

.icon-card img {
  width: min(250px, 72%);
  margin: 0 auto;
}

.banner-card {
  overflow: hidden;
}

.mini-banner {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.mini-banner > div {
  position: relative;
  z-index: 1;
}

.mini-banner small {
  display: block;
  margin-bottom: 8px;
  color: var(--brown);
  font-weight: 900;
  text-transform: uppercase;
}

.mini-banner span {
  display: block;
  color: var(--brown);
  font-family: var(--display-font);
  font-size: clamp(4.8rem, 9vw, 8rem);
  line-height: 0.75;
}

.mini-banner p {
  max-width: 290px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.mini-banner img {
  position: absolute;
  right: -190px;
  bottom: -210px;
  width: 680px;
  max-width: none;
}

.mockup-card {
  background: #f3eee7;
}

.secondary-logo-grid {
  margin-top: 18px;
}

.horizontal-logo-card {
  align-content: center;
  background: var(--white);
}

.horizontal-logo-card img {
  max-height: 330px;
}

.name-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.name-grid article {
  display: grid;
  align-content: center;
  min-height: 230px;
  padding: 28px clamp(20px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.name-grid article:first-child {
  padding-left: 0;
}

.name-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.name-grid span,
.name-grid small {
  color: var(--muted);
}

.name-grid strong {
  display: block;
  margin: 14px 0;
  color: var(--brown);
  font-size: clamp(1.55rem, 3vw, 3.1rem);
  line-height: 1;
}

.name-grid article:nth-child(2) strong,
.name-grid article:nth-child(3) strong {
  font-family: var(--display-font);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 400;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.palette-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.swatch {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(47, 42, 41, 0.12);
}

.swatch span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.swatch strong {
  font-size: 1.25rem;
}

.swatch.brown {
  background: var(--brown);
  color: var(--white);
}

.swatch.deep-green {
  background: var(--deep-green);
  color: var(--white);
}

.swatch.green {
  background: var(--green);
  color: var(--brown-deep);
}

.swatch.beige {
  background: var(--beige);
  color: var(--brown-deep);
}

.swatch.paper {
  background: var(--paper);
  color: var(--brown);
}

.type-direction p {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.12rem;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--brown);
  font-weight: 900;
  text-decoration-color: var(--beige);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.text-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

/* Logo labs */

.logo-test-hero {
  min-height: 480px;
}

.logo-lab-section,
.logo-variants-section,
.asset-logo-section,
.png-control-section {
  padding: var(--section-space) var(--page-padding);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.logo-lab-section:nth-of-type(even),
.asset-logo-section.alternate {
  background: var(--paper);
}

.logo-lab-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.34fr) minmax(280px, 0.66fr);
  gap: 18px;
}

.live-logo-stage,
.lab-notes,
.variant-card,
.asset-logo-card,
.png-control-grid article {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.grid-paper {
  background:
    linear-gradient(90deg, rgba(222, 216, 207, 0.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(222, 216, 207, 0.42) 1px, transparent 1px),
    var(--white);
  background-size: 28px 28px;
}

.live-logo-stage {
  display: grid;
  place-items: center;
  min-height: 620px;
}

.live-lockup.stacked {
  display: grid;
  justify-items: center;
  width: min(620px, 92%);
}

.live-lockup.stacked img {
  width: 100%;
  margin-bottom: -36%;
}

.live-lockup.stacked strong,
.wordmark-variant > strong {
  position: relative;
  color: var(--brown);
  font-family: var(--display-font);
  font-size: clamp(5.4rem, 11vw, 10rem);
  font-weight: 400;
  line-height: 0.72;
}

.live-lockup i,
.live-horizontal-lockup i {
  display: block;
  width: 100%;
  height: 4px;
  margin: 20px 0;
  background: var(--beige);
}

.live-lockup span,
.live-horizontal-lockup span,
.live-compass-lockup span {
  color: var(--brown);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lab-notes {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--mist);
}

.lab-notes > span {
  margin-bottom: auto;
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lab-notes h3 {
  margin-top: 100px;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.lab-notes p {
  color: var(--muted);
}

.dark-logo-lab {
  background: var(--deep-green);
  color: var(--white);
}

.dark-logo-lab h2,
.dark-logo-lab .section-kicker,
.dark-logo-lab .section-heading > p {
  color: var(--white);
}

.dark-logo-stage {
  display: grid;
  place-items: center;
  min-height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
}

.live-lockup.negative strong,
.live-lockup.negative span {
  color: var(--white);
}

.logo-variants-section {
  background: var(--paper);
}

.logo-variant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.variant-card {
  min-height: 390px;
}

.variant-card h3 {
  margin-bottom: 40px;
  font-size: 1rem;
}

.live-horizontal-lockup {
  display: grid;
  grid-template-columns: 34% 1fr;
  align-items: center;
  gap: 28px;
}

.live-horizontal-lockup img {
  display: block;
  width: 100%;
}

.live-horizontal-lockup strong,
.live-compass-lockup strong {
  display: block;
  color: var(--brown);
  font-family: var(--display-font);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.72;
}

.live-compass-lockup {
  display: grid;
  align-content: center;
  min-height: 250px;
}

.live-compass-lockup span {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 4px solid var(--beige);
  font-size: 0.8rem;
}

.wordmark-variant {
  display: grid;
  align-content: center;
}

.wordmark-variant p {
  max-width: 400px;
  margin-top: 38px;
  color: var(--muted);
}

.monogram-variant {
  background: var(--mist);
}

.emil-monogram {
  position: relative;
  width: min(280px, 78%);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.emil-monogram img {
  position: absolute;
  top: -6%;
  left: -3%;
  width: 108%;
}

.emil-monogram span {
  position: absolute;
  right: 0;
  bottom: 8%;
  left: 0;
  color: var(--brown);
  font-family: var(--display-font);
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.7;
  text-align: center;
}

.asset-logo-section.alternate {
  background: var(--paper);
}

.asset-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.asset-logo-card {
  min-height: 470px;
}

.asset-logo-card h3,
.png-control-grid h3 {
  margin-bottom: 24px;
  font-size: 1rem;
}

.asset-preview-card {
  display: grid;
  align-content: start;
}

.asset-preview-card img {
  display: block;
  width: 100%;
  margin: auto;
}

.dark-asset-card,
.png-control-grid article.dark {
  background: var(--deep-green);
  border-color: var(--deep-green);
}

.dark-asset-card h3,
.png-control-grid article.dark h3 {
  color: var(--white);
}

.horizontal-assets .asset-logo-card {
  min-height: 350px;
}

.asset-file-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.asset-file-list div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.asset-file-list div:last-child {
  border-right: 0;
}

.asset-file-list dt {
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset-file-list dd {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.86rem;
}

.png-control-section {
  background: var(--paper);
}

.png-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.png-control-grid article {
  min-height: 390px;
}

.png-control-grid img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.asset-implementation-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(40px, 8vw, 120px);
  padding: var(--section-space) var(--page-padding);
  background: var(--deep-green);
}

.asset-implementation-section h2,
.asset-implementation-section .section-kicker,
.implementation-list h3 {
  color: var(--white);
}

.implementation-list {
  display: grid;
  gap: 14px;
}

.implementation-list article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
}

.implementation-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

/* Logo test 3: skolebetegnelsen over EMIL */

.school-first-lockup {
  display: grid;
  justify-items: center;
  width: min(640px, 92%);
}

.school-first-lockup > img {
  display: block;
  width: 100%;
  margin-bottom: -35%;
}

.school-first-wordblock {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-left: 3.7%;
}

.school-first-wordblock span {
  color: var(--green-deep);
  font-size: clamp(0.78rem, 1.35vw, 1.15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.11em;
  text-align: left;
  text-transform: uppercase;
}

.school-first-wordblock strong {
  color: var(--brown);
  font-family: var(--display-font);
  font-size: clamp(5.4rem, 11vw, 10rem);
  font-weight: 400;
  line-height: 0.72;
}

.school-first-lockup.negative .school-first-wordblock span,
.school-first-lockup.negative .school-first-wordblock strong {
  color: var(--white);
}

.school-first-variant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.school-first-variant-grid .variant-card {
  display: flex;
  flex-direction: column;
  min-height: 450px;
}

.school-first-variant-grid .school-first-lockup {
  align-self: center;
  width: 100%;
  margin: 24px 0 42px;
}

.school-first-variant-grid .school-first-wordblock span {
  font-size: clamp(0.55rem, 0.72vw, 0.72rem);
}

.school-first-variant-grid .school-first-wordblock strong {
  font-size: clamp(3.6rem, 5.3vw, 5.6rem);
}

.school-first-variant-grid .variant-card > p {
  margin: auto 0 0;
  color: var(--muted);
}

.school-first-lockup.compact .school-first-wordblock {
  gap: 3px;
}

.school-first-lockup.balanced .school-first-wordblock {
  gap: 10px;
}

.school-first-lockup.airy .school-first-wordblock {
  gap: 22px;
}

.recommended-variant {
  background: var(--mist);
  border-color: rgba(167, 190, 120, 0.62);
}

/* Logo test 4: EMIL som stort søstermærke */

.sister-lockup {
  display: grid;
  justify-items: center;
  width: min(640px, 92%);
}

.sister-lockup > img {
  display: block;
  width: 100%;
  margin-bottom: -35%;
}

.sister-wordblock {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 3.7%;
}

.sister-wordblock strong {
  color: var(--brown);
  font-family: var(--display-font);
  font-size: clamp(8rem, 17vw, 15rem);
  font-weight: 400;
  line-height: 0.66;
  letter-spacing: -0.012em;
}

.sister-wordblock span {
  margin-top: 18px;
  color: var(--green-deep);
  font-size: clamp(0.62rem, 0.9vw, 0.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sister-lockup.negative .sister-wordblock strong,
.sister-lockup.negative .sister-wordblock span {
  color: var(--white);
}

.sister-variant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sister-variant-grid .variant-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.sister-variant-grid .sister-lockup {
  align-self: center;
  width: 100%;
  margin: 18px 0 38px;
}

.sister-variant-grid .sister-wordblock strong {
  font-size: clamp(6rem, 9vw, 9rem);
}

.sister-variant-grid .variant-card > p {
  margin: auto 0 0;
  color: var(--muted);
}

.sister-small-negative {
  background: var(--deep-green);
  border-color: var(--deep-green);
}

.sister-small-negative h3,
.sister-small-negative p {
  color: var(--white) !important;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.7fr);
  }

  .hero-mark {
    min-height: 470px;
  }

  .hero-arch {
    right: -36%;
    width: 720px;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-card {
    min-height: 350px;
  }

  .palette-grid.five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero,
  .formats-hero,
  .story-section,
  .practice-section,
  .relation-section,
  .contact-section,
  .type-direction,
  .section-heading,
  .format-grid,
  .format-grid.two {
    grid-template-columns: 1fr;
  }

  .logo-lab-grid,
  .asset-implementation-section {
    grid-template-columns: 1fr;
  }

  .school-first-variant-grid {
    grid-template-columns: 1fr;
  }

  .sister-variant-grid {
    grid-template-columns: 1fr;
  }

  .asset-file-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-file-list div:nth-child(2) {
    border-right: 0;
  }

  .asset-file-list div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-mark {
    min-height: 440px;
  }

  .hero-arch {
    top: -16%;
    right: -26%;
    width: min(720px, 110vw);
  }

  .hero-compass {
    right: auto;
    left: 0;
  }

  .fact-strip,
  .journey-grid,
  .name-grid {
    grid-template-columns: 1fr;
  }

  .fact-strip article,
  .fact-strip article:first-child,
  .fact-strip article:last-child {
    min-height: 112px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .fact-strip article:last-child {
    border-bottom: 0;
  }

  .journey-grid article,
  .journey-grid article:first-child,
  .journey-grid article:last-child,
  .name-grid article,
  .name-grid article:first-child,
  .name-grid article:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .journey-grid article:last-child,
  .name-grid article:last-child {
    border-bottom: 0;
  }

  .journey-grid span {
    margin-bottom: 22px;
  }

  .audience-grid,
  .palette-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .palette-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .formats-hero {
    min-height: 440px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-padding: 20px;
    --section-space: 64px;
  }

  .site-header {
    gap: 18px;
  }

  .site-nav {
    gap: 10px 16px;
    font-size: 0.82rem;
  }

  .lab-nav {
    justify-content: flex-start;
    gap: 18px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-title-label {
    font-size: clamp(1.7rem, 9.4vw, 2.35rem);
  }

  .hero-title-word {
    font-size: clamp(5.2rem, 28vw, 7rem);
  }

  .button {
    width: 100%;
  }

  .hero-mark {
    min-height: 400px;
  }

  .hero-arch {
    top: -10%;
    right: -64%;
    width: 690px;
  }

  .hero-compass {
    right: 0;
    width: 100%;
  }

  .hero-compass div {
    min-height: 84px;
    padding: 14px;
  }

  .hero-compass strong {
    font-size: 2.65rem;
  }

  .hero-compass span {
    font-size: 0.76rem;
  }

  .values-grid,
  .audience-grid,
  .palette-grid,
  .palette-grid.five,
  .logo-variant-grid,
  .asset-logo-grid,
  .png-control-grid {
    grid-template-columns: 1fr;
  }

  .live-logo-stage,
  .dark-logo-stage {
    min-height: 420px;
  }

  .live-lockup.stacked strong,
  .wordmark-variant > strong,
  .school-first-wordblock strong {
    font-size: clamp(4.8rem, 25vw, 7rem);
  }

  .school-first-lockup {
    width: min(520px, 100%);
  }

  .school-first-wordblock span {
    font-size: clamp(0.64rem, 3vw, 0.88rem);
  }

  .school-first-variant-grid .school-first-wordblock strong {
    font-size: clamp(4rem, 20vw, 6.4rem);
  }

  .school-first-variant-grid .school-first-wordblock span {
    font-size: clamp(0.58rem, 2.7vw, 0.8rem);
  }

  .sister-lockup {
    width: min(520px, 100%);
  }

  .sister-wordblock strong,
  .sister-variant-grid .sister-wordblock strong {
    font-size: clamp(7.5rem, 37vw, 9rem);
  }

  .sister-wordblock span {
    margin-top: 12px;
    font-size: clamp(0.56rem, 2.6vw, 0.76rem);
  }

  .school-first-section h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .live-lockup.stacked span,
  .live-horizontal-lockup span {
    font-size: 0.7rem;
  }

  .live-horizontal-lockup {
    grid-template-columns: 1fr;
  }

  .live-horizontal-lockup img {
    width: 64%;
  }

  .asset-logo-card,
  .png-control-grid article {
    min-height: 0;
  }

  .value-card {
    min-height: 0;
  }

  .question-list li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .relation-mark {
    flex-wrap: wrap;
  }

  .site-footer {
    display: block;
  }

  .site-footer img {
    margin-bottom: 22px;
  }

  .site-footer div {
    text-align: left;
  }

  .format-card {
    min-height: 290px;
    padding: 20px;
  }

  .mini-banner {
    min-height: 310px;
    padding: 24px;
  }

  .mini-banner img {
    right: -250px;
    bottom: -170px;
    width: 600px;
  }
}

@media print {
  .skip-link,
  .site-header,
  .hero-actions,
  .status-line,
  .formats-hero .format-status {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
    font-size: 10pt;
  }

  .hero {
    min-height: 0;
    padding-top: 30px;
  }

  .hero-mark {
    min-height: 330px;
  }

  .story-section,
  .journey-section,
  .values-section,
  .practice-section,
  .audiences-section,
  .relation-section,
  .contact-section {
    break-inside: avoid;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .practice-section {
    background: #ffffff;
    color: #000000;
  }

  .practice-section h2,
  .practice-section .section-kicker,
  .question-list span,
  .practice-intro > p:last-child {
    color: #000000;
  }
}
