/* ═══════════════════════════════════════════════════════════════
   Frantz Landing Page V3 - "Redaksjonell, brand-tilpasset"
   Beholder den redaksjonelle layouten fra v1, men arver
   merkevarens DNA fra frantz.no:
     Font:   Montserrat (erstatter serif/Inter/mono)
     Farger: Navy #0C3F59 · Oransje #F6A321 · Lys gr&aring; #E8EEF1
     Knapper: avrundet, navy/oransje (som hjemmesiden)
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Frantz-palett */
    --c-ink: #0C3F59;          /* navy - tekst & m&oslash;rke flater */
    --c-ink-soft: #145980;     /* navy lysere */
    --c-paper: #E8EEF1;        /* brand lys gr&aring; */
    --c-paper-warm: #F4F8FA;   /* n&aelig;sten hvit, kj&oslash;lig */
    --c-accent: #F6A321;       /* oransje - dekor, fyll, p&aring; m&oslash;rk bakgrunn */
    --c-accent-deep: #B5680A;  /* m&oslash;rkere oransje - lesbar p&aring; lys bakgrunn */
    --c-accent-soft: #FDF1DC;
    --c-rule: #cdd8de;         /* delelinjer */
    --c-rule-soft: #dde6ea;
    --c-text: #2a3b44;         /* br&oslash;dtekst */
    --c-muted: #5b6b74;        /* dempet */

    /* Typografi - kun Montserrat (brand) */
    --f-display: 'Montserrat', system-ui, sans-serif;
    --f-body: 'Montserrat', system-ui, sans-serif;
    --f-label: 'Montserrat', system-ui, sans-serif;

    /* Spatial */
    --content-max: 720px;
    --content-wide: 1180px;
    --hero-h: 100vh;
    --t: 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--c-text);
    background: var(--c-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Subtil papirstruktur - beholdt for karakter */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--c-ink);
    text-decoration-skip-ink: auto;
    transition: color var(--t);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

a:hover { color: var(--c-accent-deep); }

:focus-visible {
    outline: 2px solid var(--c-ink);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(246, 163, 33, 0.6);
}

/* ═══════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════ */
.fr-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 200;
    pointer-events: none;
    background: transparent;
}

.fr-progress__bar {
    height: 100%;
    width: 0%;
    background: var(--c-accent);
    transition: width 0.1s linear;
    will-change: width;
}

/* ═══════════════════════════════════════
   SKIP LINK
   ═══════════════════════════════════════ */
.fr-skip {
    position: fixed;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 12px 20px;
    background: var(--c-accent);
    color: var(--c-ink);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
}

.fr-skip:focus { top: 12px; outline: none; }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.fr-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--t), padding var(--t);
    color: var(--c-paper);
}

.fr-header--scrolled {
    background: rgba(12, 63, 89, 0.96);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    padding: 14px 32px;
    color: var(--c-paper);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.fr-header__brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    transition: opacity var(--t);
}

.fr-header__brand:hover { opacity: 0.85; }

.fr-header__logo {
    display: block;
    max-height: 32px;
    width: auto;
    /* Logoen er oransje og leses godt p&aring; b&aring;de hero og navy header - vises i sin rette farge */
    transition: max-height var(--t);
}

@media (min-width: 1024px) {
    .fr-header__logo { max-height: 38px; }
}

@media (min-width: 1440px) {
    .fr-header__logo { max-height: 44px; }
}

/* ═══════════════════════════════════════
   HERO - Full-bleed editorial cover
   ═══════════════════════════════════════ */
.fr-hero {
    position: relative;
    min-height: var(--hero-h);
    overflow: hidden;
    background: var(--c-ink);
    color: var(--c-paper);
    isolation: isolate;
}

.fr-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fr-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-pos, center);
    animation: kenburns 18s cubic-bezier(0.25, 0, 0.4, 1) forwards;
}

@keyframes kenburns {
    from { transform: scale(1.02); }
    to { transform: scale(1.10); }
}

/* Navy slør i merkevarens farge - knytter foto til brand */
.fr-hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(12, 63, 89, 0.55) 0%,
            rgba(12, 63, 89, 0.20) 22%,
            rgba(12, 63, 89, 0.20) 45%,
            rgba(12, 63, 89, 0.62) 78%,
            rgba(12, 63, 89, 0.94) 100%),
        linear-gradient(135deg,
            rgba(12, 63, 89, 0.40) 0%,
            rgba(12, 63, 89, 0) 55%);
}

.fr-hero__frame {
    position: relative;
    z-index: 2;
    min-height: var(--hero-h);
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: minmax(0, 1fr);
    padding: 88px 24px 32px;
}

.fr-hero__frame > * { min-width: 0; }

@media (min-width: 640px) {
    .fr-hero__frame { padding: 100px 32px 40px; }
}

.fr-hero__content {
    align-self: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
}

.fr-hero__kicker {
    display: inline-block;
    font-family: var(--f-label);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 22px;
}

.fr-hero__title {
    font-family: var(--f-display);
    font-size: clamp(3.4rem, 13vw, 9rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--c-paper);
    text-wrap: balance;
    overflow-wrap: break-word;
    margin-bottom: 28px;
}

.fr-hero__tagline {
    font-family: var(--f-display);
    font-size: clamp(1.25rem, 2.6vw, 1.9rem);
    font-weight: 300;
    line-height: 1.35;
    color: var(--c-paper);
    max-width: 30ch;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(20px);
    animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.55s forwards;
}

.fr-hero__tagline em {
    font-style: normal;
    color: var(--c-accent);
    font-weight: 500;
}

.fr-hero__title em {
    font-style: normal;
    color: var(--c-accent);
    font-weight: 700;
}

.fr-hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fr-hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.fr-hero__title-line:nth-child(2) { animation-delay: 0.25s; }
.fr-hero__title-line:nth-child(3) { animation-delay: 0.4s; }

@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
}

.fr-hero__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.fr-hero__loc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-label);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-paper);
}

.fr-hero__loc svg {
    width: 18px;
    height: 18px;
    color: var(--c-accent);
}

.fr-hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--c-paper);
    font-family: var(--f-label);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--c-accent);
    transition: gap var(--t), color var(--t);
}

.fr-hero__scroll:hover {
    color: var(--c-accent);
    gap: 16px;
}

.fr-hero__scroll svg { animation: drift 2s ease-in-out infinite; }

@keyframes drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.fr-hero__sig {
    display: none;
    text-align: right;
    font-family: var(--f-label);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232, 238, 241, 0.6);
}

@media (min-width: 640px) {
    .fr-hero__sig { display: block; }
}

.fr-hero__sig strong {
    display: block;
    color: var(--c-paper);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: none;
    font-family: var(--f-display);
}

/* ═══════════════════════════════════════
   CONTAINERS
   ═══════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 28px;
}

.container--wide {
    max-width: var(--content-wide);
}

.section { padding: 56px 0; }

/* ═══════════════════════════════════════
   CHAPTER MARKER (signaturelement)
   ═══════════════════════════════════════ */
.chapter {
    display: block;
    margin-bottom: 28px;
    font-family: var(--f-label);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-ink);
}

/* ═══════════════════════════════════════
   INTRO
   ═══════════════════════════════════════ */
.intro {
    padding: 64px 0 56px;
    border-bottom: 1px solid var(--c-rule);
}

@media (min-width: 768px) {
    .intro { padding: 80px 0 64px; }
}

.intro__lead {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    font-weight: 600;
    line-height: 1.28;
    color: var(--c-ink);
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin-bottom: 32px;
    max-width: 28ch;
}

.intro__lead em {
    font-style: normal;
    color: var(--c-accent-deep);
}

.intro__body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--c-text);
    max-width: 56ch;
}

.intro__body p + p { margin-top: 16px; }

/* ═══════════════════════════════════════
   FULL-BLEED IMAGE
   ═══════════════════════════════════════ */
.fullimg {
    width: 100%;
    margin: 0 auto;
}

.fullimg img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 70vh;
    object-fit: cover;
    background: var(--c-ink);
}

@media (min-width: 640px) { .fullimg img { aspect-ratio: 16 / 9; } }
@media (min-width: 1024px) { .fullimg img { aspect-ratio: 21 / 9; max-height: 600px; } }
@media (min-width: 1400px) {
    .fullimg { max-width: 1600px; padding: 0 32px; }
    .fullimg img { aspect-ratio: 16 / 9; max-height: 720px; border-radius: 12px; }
}

.fullimg__cap {
    display: block;
    max-width: var(--content-max);
    margin: 14px auto 0;
    padding: 0 28px;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--c-muted);
    text-align: center;
}

@media (min-width: 1024px) { .fullimg__cap { font-size: 1.05rem; margin-top: 18px; } }

/* ═══════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════ */
.cta-strip {
    background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-ink-soft) 100%);
    color: var(--c-paper);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 88% 15%, rgba(246, 163, 33, 0.16) 0%, transparent 55%);
    pointer-events: none;
}

.cta-strip__inner {
    position: relative;
    display: grid;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-strip__inner { grid-template-columns: 1fr auto; gap: 48px; }
}

.cta-strip__hook {
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 24ch;
    text-wrap: balance;
}

.cta-strip__hook em {
    font-style: normal;
    color: var(--c-accent);
}

.cta-strip__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.cta-strip__actions .btn { width: 100%; }

@media (min-width: 640px) {
    .cta-strip__actions {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
    }
    .cta-strip__actions .btn { width: auto; }
}

/* ═══════════════════════════════════════
   BUTTONS - avrundet, som hjemmesiden
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 30px;
    font-family: var(--f-body);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    border: 2px solid transparent;
    border-radius: 50px;
    background: none;
    cursor: pointer;
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
    text-decoration: none;
    line-height: 1.2;
    color: inherit;
}

.btn::after {
    content: '\2192';
    font-size: 1.1rem;
    transition: transform var(--t);
}

.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(4px); }

.btn--primary {
    background: var(--c-accent);
    color: var(--c-ink);
    border-color: var(--c-accent);
}

.btn--primary:hover {
    background: var(--c-ink);
    border-color: var(--c-ink);
    color: var(--c-paper);
}

.btn--ghost {
    background: transparent;
    color: var(--c-paper);
    border-color: rgba(232, 238, 241, 0.45);
}

.btn--ghost:hover {
    border-color: var(--c-paper);
    background: rgba(232, 238, 241, 0.10);
    color: var(--c-paper);
}

.btn--outline {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-ink);
}

.btn--outline:hover {
    background: var(--c-ink);
    color: var(--c-paper);
}

/* ═══════════════════════════════════════
   CONTENT (Om stillingen)
   ═══════════════════════════════════════ */
.content {
    padding: 64px 0;
    background: var(--c-paper-warm);
    border-bottom: 1px solid var(--c-rule);
}

@media (min-width: 768px) {
    .content { padding: 80px 0; }
}

.content__sidebar { display: none; }

.content__sidebar-label {
    display: block;
    font-family: var(--f-label);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a5208;
    margin-bottom: 16px;
}

.content__sidebar-summary {
    font-family: var(--f-display);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--c-ink);
}

.prose {
    font-family: var(--f-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--c-text);
    max-width: 65ch;
}

.prose p { margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }

.prose h2 {
    font-family: var(--f-display);
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 72px 0 24px;
    text-wrap: balance;
}

.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: normal; color: var(--c-accent-deep); }

.prose h3 {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--c-ink);
    margin: 56px 0 16px;
    padding-top: 32px;
    border-top: 1px solid var(--c-rule);
    line-height: 1.2;
    text-wrap: balance;
}

.prose h3:first-of-type {
    padding-top: 0;
    border-top: none;
    margin-top: 40px;
}

.prose ul { list-style: none; padding: 0; margin-bottom: 24px; }

.prose li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    line-height: 1.65;
}

.prose li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-accent);
    opacity: 0.6;
}

.prose li.key::before {
    width: 10px;
    height: 10px;
    top: 10px;
    opacity: 1;
}

.prose li.key strong {
    color: var(--c-ink);
    font-weight: 700;
}

.prose li.key strong + * {
    color: var(--c-muted);
}

.prose strong { color: var(--c-ink); font-weight: 700; }

.ps-note {
    margin: 56px 0 0;
    padding: 28px 0 0;
    border-top: 1px solid var(--c-rule);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: baseline;
}

.ps-note__label {
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-accent-deep);
    letter-spacing: 0.04em;
    line-height: 1;
}

.ps-note p {
    margin: 0;
    font-family: var(--f-body);
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--c-text);
    max-width: 56ch;
}

@media (max-width: 639px) {
    .ps-note {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ═══════════════════════════════════════
   META / FOOTER
   ═══════════════════════════════════════ */
.meta {
    padding: 64px 0;
    background: var(--c-paper);
}

.meta__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 24px;
    row-gap: 14px;
    align-items: baseline;
    padding-bottom: 28px;
}

.meta__item {
    display: contents;
}

.meta__label {
    font-family: var(--f-label);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-muted);
    white-space: nowrap;
}

.meta__value {
    font-family: var(--f-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-ink);
    text-align: right;
}

@media (min-width: 768px) {
    .meta__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .meta__item { display: block; padding: 0 28px; border-right: 1px solid var(--c-rule); }
    .meta__item:first-child { padding-left: 0; }
    .meta__item:last-child { padding-right: 0; border-right: none; }

    .meta__label { display: block; margin-bottom: 6px; }
    .meta__value { text-align: left; font-size: 1.25rem; }
}

.subscribe {
    text-align: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--c-rule);
}

.subscribe__heading {
    font-family: var(--f-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 20px;
}

.subscribe .btn { width: 100%; }
@media (min-width: 640px) { .subscribe .btn { width: auto; } }

.contact { padding: 56px 0; }

.contact__title {
    font-family: var(--f-label);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 12px;
}

.contact__heading {
    font-family: var(--f-display);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--c-ink);
    margin-bottom: 10px;
}

.contact__body { font-size: 1rem; line-height: 1.75; color: var(--c-text); }
.contact__body p { margin-bottom: 6px; }
.contact__body strong { color: var(--c-ink); }
.contact__body a { color: var(--c-accent-deep); font-weight: 600; }

.contact__intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--c-muted);
    max-width: 52ch;
    margin-bottom: 32px;
}

.contact__people {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) {
    .contact__people { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

.meta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--c-rule);
}

.meta__actions .btn { width: 100%; }

@media (min-width: 600px) {
    .meta__actions { flex-direction: row; flex-wrap: wrap; }
    .meta__actions .btn { width: auto; }
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-person__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--c-accent);
    background: var(--c-rule-soft);
}

.contact-person__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-person__name {
    font-family: var(--f-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1.25;
}

.contact-person__role {
    font-family: var(--f-label);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 4px;
}

.contact-person__email {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-accent-deep);
    word-break: break-word;
}

.contact-person__email:hover { color: var(--c-accent); }

/* ═══════════════════════════════════════
   SHARE
   ═══════════════════════════════════════ */
.share {
    display: flex;
    gap: 10px;
    padding: 32px 0 8px;
    border-top: 1px solid var(--c-rule);
    align-items: center;
}

.share__label {
    font-family: var(--f-label);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-right: 12px;
}

.share__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--c-ink);
    font-size: 0.95rem;
    cursor: pointer;
    transition: color var(--t), background var(--t), transform var(--t);
    border: 1px solid var(--c-rule);
    background: transparent;
}

.share__btn:hover, .share__btn:focus-visible {
    color: var(--c-paper);
    background: var(--c-accent);
    border-color: var(--c-accent);
    transform: translateY(-2px);
    z-index: 1;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about {
    padding: 64px 0;
    background: var(--c-ink);
    color: var(--c-paper);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about { padding: 80px 0; }
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, var(--c-accent) 0%, transparent 70%);
    opacity: 0.10;
    pointer-events: none;
}

.about__eyebrow {
    font-family: var(--f-label);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 20px;
}

.about__heading {
    font-family: var(--f-display);
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--c-paper);
    margin-bottom: 28px;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.about__heading em {
    font-style: normal;
    color: var(--c-accent);
}

.about__body {
    color: rgba(232, 238, 241, 0.85);
    max-width: 60ch;
    line-height: 1.75;
}

.about__body p + p { margin-top: 16px; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: var(--c-paper);
    border-top: 1px solid var(--c-rule);
    padding: 48px 32px;
    text-align: center;
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    text-decoration: none;
    transition: opacity var(--t);
}

.footer__brand:hover { opacity: 0.75; }

.footer__logo {
    display: block;
    max-height: 32px;
    width: auto;
}

.footer__tag {
    font-family: var(--f-label);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 24px;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__links a {
    font-family: var(--f-label);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--c-muted);
    text-decoration: none;
    display: inline-block;
    padding: 8px 4px;
}

.footer__links a:hover { color: var(--c-accent-deep); }

/* ═══════════════════════════════════════
   STICKY CTA (mobil)
   ═══════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--c-ink);
    color: var(--c-paper);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
    padding: 10px 16px;
}

.sticky-cta--visible { transform: translateY(0); pointer-events: auto; }

.sticky-cta__inner { display: flex; gap: 12px; }
.sticky-cta .btn { flex: 1; min-height: 46px; }

@media (min-width: 1024px) { .sticky-cta { display: none; } }

/* ═══════════════════════════════════════
   VIDEO TEASER (kultur)
   ═══════════════════════════════════════ */
.videoteaser {
    padding: 56px 0;
    background: var(--c-paper);
}

@media (min-width: 768px) {
    .videoteaser { padding: 72px 0; }
}

.videoteaser__card {
    background: var(--c-paper-warm);
    border: 1px solid var(--c-rule);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 18px 50px rgba(12, 63, 89, 0.10);
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .videoteaser__card {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 44px 48px;
        gap: 48px;
    }
}

.videoteaser__text { max-width: 46ch; }

.videoteaser__eyebrow {
    display: block;
    font-family: var(--f-label);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-accent-deep);
    margin-bottom: 14px;
}

.videoteaser__title {
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 3.6vw, 2.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--c-ink);
    margin-bottom: 14px;
    text-wrap: balance;
}

.videoteaser__title em { font-style: normal; color: var(--c-accent-deep); }

.videoteaser__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--c-muted);
    margin: 0;
}

/* Sirkul&aelig;r videotrigger - som Gobi/Wider&oslash;e-m%C3%B8nsteret */
.videoteaser__trigger {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.videoteaser__thumb {
    position: relative;
    display: block;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--c-accent);
    box-shadow: 0 10px 30px rgba(12, 63, 89, 0.18);
    transition: transform var(--t), box-shadow var(--t);
}

@media (min-width: 768px) {
    .videoteaser__thumb { width: 200px; height: 200px; }
}

.videoteaser__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videoteaser__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--c-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(12, 63, 89, 0.28);
    transition: background var(--t), color var(--t), transform var(--t);
}

.videoteaser__play svg { width: 26px; height: 26px; margin-left: 3px; }

.videoteaser__trigger:hover .videoteaser__thumb,
.videoteaser__trigger:focus-visible .videoteaser__thumb {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(12, 63, 89, 0.26);
}

.videoteaser__trigger:hover .videoteaser__play,
.videoteaser__trigger:focus-visible .videoteaser__play {
    background: var(--c-accent);
    color: var(--c-ink);
    transform: translate(-50%, -50%) scale(1.08);
}

.videoteaser__hint {
    font-family: var(--f-label);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-muted);
}

.videoteaser__dur { color: var(--c-accent-deep); }

/* ═══════════════════════════════════════
   VIDEO MODAL
   ═══════════════════════════════════════ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal[hidden] { display: none; }

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 63, 89, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: vm-fade var(--t) ease forwards;
}

.video-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 900px;
    animation: vm-pop 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.video-modal__video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.video-modal__close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--c-accent);
    color: var(--c-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: background var(--t), transform var(--t);
}

.video-modal__close svg { width: 22px; height: 22px; }
.video-modal__close:hover { background: #fff; transform: scale(1.06); }

@media (max-width: 600px) {
    .video-modal__close { top: -52px; right: 0; }
}

@keyframes vm-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes vm-pop { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
    .video-modal__backdrop, .video-modal__dialog { animation: none; }
}

/* ═══════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════ */
/* Skjul kun n&aring;r JS er tilgjengelig - uten skript vises innholdet direkte (robust mot blokkert/feilende JS) */
@media (scripting: enabled) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal--visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .fr-hero__title-line { opacity: 1; transform: none; animation: none; }
    .fr-hero__tagline { opacity: 1; transform: none; animation: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (min-width: 1024px) {
    .fr-hero__frame { padding: 120px 56px 56px; }
    .container { padding: 0 56px; }
    .section { padding: 96px 0; }

    .content .container--wide {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 80px;
        align-items: start;
    }

    .content__sidebar { display: block; position: sticky; top: 120px; }
}

@media (min-width: 1440px) {
    :root { --content-max: 800px; --content-wide: 1280px; }
    body { font-size: 18px; }
    .fr-hero__frame { padding: 140px 80px 64px; }
    .container { padding: 0 80px; }
    .section { padding: 112px 0; }
}

/* ═══════════════════════════════════════
   PRINT
   ═══════════════════════════════════════ */
@media print {
    body::before, .fr-progress, .sticky-cta, .share { display: none !important; }
    .fr-hero { min-height: auto; background: none !important; color: var(--c-ink); }
    .fr-hero__veil, .fr-hero__media { display: none; }
    .fr-hero__title, .fr-hero__kicker, .fr-hero__loc, .fr-hero__tagline { color: var(--c-ink) !important; }
    .about, .cta-strip { background: none; color: var(--c-ink); }
    .btn { border: 1px solid var(--c-ink); color: var(--c-ink) !important; background: none !important; }
}
