@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Variables ─────────────────────────────────────────────────────── */
.djs-root {
    --yellow:   #F5C800;
    --black:    #0C0C0C;
    --dark:     #111111;
    --charcoal: #1A1A1A;
    --stone:    #F2F0EB;
    --warm-mid: #E8E4DC;
    --muted:    #7A7570;
    --white:    #FFFFFF;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    background: var(--stone);
    color: var(--black);
    font-family: var(--font-body);
}
.djs-root *, .djs-root *::before, .djs-root *::after { box-sizing: border-box; }
.djs-root a { text-decoration: none; color: inherit; }
.djs-root button { font-family: var(--font-body); cursor: pointer; border: none; background: none; padding: 0; }
.djs-root img { display: block; max-width: 100%; }
.djs-root dl, .djs-root dt, .djs-root dd { margin: 0; padding: 0; }

/* ================================================================
   HERO
   ================================================================ */

.djs-hero {
    position: relative;
    height: 44vh;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.djs-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.djs-hero__bg-img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center 30%;
    transform: translateY(0);
    will-change: transform;
}
.djs-hero__bg-placeholder {
    width: 100%;
    height: 100%;
    background: var(--charcoal);
}
.djs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(10,10,10,.3) 0%,
        rgba(10,10,10,.12) 40%,
        rgba(10,10,10,.72) 75%,
        rgba(10,10,10,.94) 100%
    );
}
.djs-hero__noise {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px;
}

.djs-hero__content {
    position: relative;
    z-index: 3;
    padding: 0 6vw 52px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.djs-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.djs-eyebrow__line {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}
.djs-eyebrow__text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--yellow);
}

.djs-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 80px);
    line-height: .93;
    letter-spacing: -.01em;
    color: var(--white);
    margin: 0 0 24px;
    max-width: 900px;
}

.djs-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.djs-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .05em;
    padding: 5px 12px;
    border-radius: 100px;
}

.djs-tag--loc { color: var(--yellow); border-color: rgba(245,200,0,.3); background: rgba(245,200,0,.1); }

.djs-hero__cue {
    position: absolute;
    bottom: 40px;
    right: 6vw;
    z-index: 3;
}
.djs-cue__line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
    animation: djs-cue-pulse 2s ease-in-out infinite;
}
@keyframes djs-cue-pulse {
    0%, 100% { transform: scaleY(1); opacity: .5; }
    50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ================================================================
   BODY
   ================================================================ */

.djs-body {
    background: var(--stone);
    padding: 64px 0 96px;
}

.djs-body__wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6vw;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
}

/* ── Section title ───────────────────────────────────────────────── */
.djs-section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: .03em;
    color: var(--black);
    margin: 0 0 20px;
    line-height: 1;
}

/* ── Highlights ─────────────────────────────────────────────────── */
.djs-highlights {
    background: var(--yellow);
    padding: 28px 32px;
    margin-bottom: 40px;
}
.djs-highlights__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.djs-highlights__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.5;
}
.djs-highlights__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--black);
    flex-shrink: 0;
    margin-top: 6px;
    opacity: .5;
}

/* ── Content ─────────────────────────────────────────────────────── */
.djs-content {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.8;
    color: rgba(12,12,12,.78);
    font-weight: 300;
    margin-bottom: 48px;
}
/* Nulstil alle inline styles fra Word-paste (forsvarslinje 3) */
.djs-content * {
    font-family: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
    background: none !important;
    line-height: inherit !important;
    margin-top: 0;
    margin-bottom: 0;
}
/* Giv afstand mellem blok-elementer */
.djs-content p { margin-bottom: 0.9em; }
.djs-content p:last-child { margin-bottom: 0; }
.djs-content h2 { font-family: var(--font-display) !important; font-size: clamp(28px, 3.5vw, 44px) !important; line-height: 1; letter-spacing: .02em; color: var(--black) !important; margin-top: 2em; margin-bottom: 0.4em; }
.djs-content h3 { font-size: 14px !important; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--muted) !important; margin-top: 1.6em; margin-bottom: 0.3em; }
.djs-content h4 { font-size: 13px !important; font-weight: 600; color: var(--black) !important; margin-top: 1.4em; margin-bottom: 0.3em; }
.djs-content p:first-child { font-size: clamp(17px, 1.6vw, 20px) !important; font-weight: 400; color: rgba(12,12,12,.88) !important; line-height: 1.7; }
.djs-content ul,
.djs-content ol { padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 0.6em 0; }
.djs-content ul li { padding-left: 20px; position: relative; font-size: inherit !important; }
.djs-content ul li p,
.djs-content ol li p { margin: 0; display: inline; font-size: inherit !important; }
.djs-content ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 2px; background: var(--yellow); }
.djs-content ol { list-style: decimal !important; padding-left: 1.2em; }
.djs-content ol li { padding-left: 6px; }
.djs-content strong { font-weight: 600; color: var(--black) !important; }
.djs-content em { font-style: italic; }
.djs-content a { color: var(--yellow); text-decoration: underline; }
.djs-content sup, .djs-content sub { font-size: .7em !important; }

/* ── Apply CTA ───────────────────────────────────────────────────── */
.djs-apply-cta {
    background: var(--black);
    padding: 36px;
}
.djs-apply-cta .djs-section-title { color: var(--white); }
.djs-apply-cta__text { font-size: 15px; color: rgba(255,255,255,.6); margin: 0 0 24px; font-weight: 300; }
.djs-apply-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.djs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s, transform .15s;
}
.djs-btn--primary {
    background: var(--yellow);
    color: var(--black);
}
.djs-btn--primary:hover { background: #d4a900; transform: translateY(-1px); }
.djs-btn--secondary {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.15);
}
.djs-btn--secondary:hover { background: rgba(255,255,255,.14); color: var(--white); }

/* ── Sidebar ─────────────────────────────────────────────────────── */
.djs-info-card,
.djs-contact-card {
    background: var(--white);
    padding: 0;
    margin-bottom: 16px;
}

.djs-info-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: .05em;
    color: var(--black);
    margin: 0;
    padding: 18px 22px 14px;
    border-bottom: 1px solid var(--warm-mid);
}

.djs-info-list { display: flex; flex-direction: column; }
.djs-info-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    padding: 11px 22px;
    border-bottom: 1px solid var(--warm-mid);
}
.djs-info-row:last-child { border-bottom: none; }
.djs-info-row dt { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; }
.djs-info-row dd { font-size: 13px; font-weight: 500; color: var(--black); }
.djs-info-row--deadline dd { color: #c05000; font-weight: 600; }

.djs-contact-card__name { font-size: 14px; font-weight: 600; color: var(--black); padding: 12px 22px 4px; margin: 0; }
.djs-contact-card__link { display: block; font-size: 13px; color: var(--muted); padding: 4px 22px; transition: color .15s; }
.djs-contact-card__link:last-child { padding-bottom: 16px; }
.djs-contact-card__link:hover { color: var(--black); }

.djs-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, transform .15s;
    margin-bottom: 16px;
}
.djs-apply-btn:hover { background: #d4a900; transform: translateY(-1px); }

/* ================================================================
   NAV
   ================================================================ */

.djs-nav { background: var(--black); border-top: 1px solid rgba(255,255,255,.06); }
.djs-nav__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6vw;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 80px;
}
.djs-nav__back {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    transition: color .2s;
    padding: 20px 0;
}
.djs-nav__back:hover { color: var(--white); }
.djs-nav__back:hover svg { transform: translateX(-4px); }
.djs-nav__back svg { transition: transform .2s; }

.djs-nav__next {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0 16px 32px;
    border-left: 1px solid rgba(255,255,255,.07);
    max-width: 360px;
    margin-left: auto;
    text-decoration: none;
    transition: opacity .2s;
}
.djs-nav__next:hover { opacity: .8; }
.djs-nav__next > svg { color: var(--yellow); flex-shrink: 0; transition: transform .2s; }
.djs-nav__next:hover > svg { transform: translateX(4px); }
.djs-nav__next-thumb { width: 52px; height: 40px; border-radius: 3px; overflow: hidden; flex-shrink: 0; background: #222; }
.djs-nav__next-thumb img { width: 100%; height: 100%; object-fit: cover; }
.djs-nav__next-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.djs-nav__next-label { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow); }
.djs-nav__next-title { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ================================================================
   ANIMATIONS
   ================================================================ */

@keyframes djs-slide-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.djs-anim {
    opacity: 0;
    animation: djs-slide-up .7s cubic-bezier(.16,1,.3,1) both;
    animation-delay: var(--djs-delay, 0s);
}

.djs-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .75s cubic-bezier(.16,1,.3,1),
        transform .75s cubic-bezier(.16,1,.3,1);
    transition-delay: var(--djs-delay, 0s);
}
.djs-reveal.visible {
    opacity: 1;
    transform: none;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 960px) {
    .djs-body__wrap { grid-template-columns: 1fr; gap: 32px; }
    .djs-sidebar { order: -1; }
    .djs-info-card, .djs-contact-card, .djs-apply-btn { max-width: 480px; }
    .djs-hero { height: 38vh; }
    .djs-hero__title { font-size: clamp(32px, 8vw, 56px); }
}

@media (max-width: 560px) {
    .djs-apply-cta { padding: 24px; }
    .djs-highlights { padding: 20px 22px; }
    .djs-nav__inner { flex-direction: column; }
    .djs-nav__next { border-left: none; border-top: 1px solid rgba(255,255,255,.07); padding-left: 0; max-width: 100%; }
}
