/* ============================================================
   Mitt Grendehus — varm trefarge-palett med grønn lokalsamfunns-aksent
   (samme produktfamilie som sameiehjemmeside.no)
   ============================================================ */

:root {
    /* Treverk er utgangspunktet — varme jordtoner med en grønn grend-aksent */
    --brand: #cf7233;           /* varm terrakotta / tre */
    --brand-dark: #b25a20;
    --brand-deep: #8c4316;
    --brand-soft: #fbeede;
    --brand-tint: #f1d9bd;
    --accent: #3f6b4a;          /* moss-/lokalsamfunnsgrønn — bærende aksent */
    --accent-soft: #e7efe7;

    /* Treverk-toner til hus- og utleieseksjonene */
    --wood: #a96a37;
    --wood-deep: #7c4a22;
    /* Grend-grønn (utleie-signaturen) */
    --moss: #3f6b4a;
    --moss-bright: #5a9468;
    --moss-deep: #2c4f37;

    --ink: #221a12;             /* varm, mørk treskygge */
    --ink-soft: #4a4138;
    --ink-mute: #7a6e60;

    --bg: #f8f2e7;              /* lyst, varmt papir */
    --bg-soft: #f3ead8;
    --bg-accent: #efe1c8;
    --paper: #fffdf8;

    --line: #e6d8bf;
    --line-strong: #d4c19c;
    --success: #2f6f3c;
    --warning: #b45309;

    --container: 1180px;
    --container-narrow: 740px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 2px rgba(74, 50, 20, .05), 0 2px 6px rgba(74, 50, 20, .04);
    --shadow: 0 10px 30px rgba(74, 50, 20, .08), 0 2px 6px rgba(74, 50, 20, .05);
    --shadow-lg: 0 26px 60px rgba(74, 50, 20, .14), 0 6px 14px rgba(74, 50, 20, .06);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-hand: 'Caveat', 'Bradley Hand', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    margin: 0;
    line-height: 1.65;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
    /* subtil papir-tekstur via SVG */
    background-image:
        radial-gradient(1200px 600px at 80% -10%, rgba(207, 114, 51, 0.08), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(63, 107, 74, 0.05), transparent 60%);
    background-attachment: fixed;
}

a { color: var(--brand-deep); text-decoration: none; }
a:hover { color: var(--brand-dark); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

/* ============================================================
   Typografi — serif for tittler gir personlighet
   ============================================================ */

h1, h2, h3, h4 {
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -0.015em;
    font-family: var(--font-serif);
    font-weight: 600;
}

h1 {
    font-size: clamp(2.2rem, 5.2vw, 3.6rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    font-variation-settings: 'opsz' 120;
}
h2 { font-size: clamp(1.7rem, 3.6vw, 2.55rem); font-weight: 600; font-variation-settings: 'opsz' 96; }
h3 { font-size: 1.35rem; font-weight: 600; font-family: var(--font-sans); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-sans); }

p { margin: 0 0 12px; }
em { font-style: italic; color: var(--brand-deep); }

.section-h2 { margin-bottom: 10px; }
.section-h2--center { text-align: center; }

.section-lead {
    color: var(--ink-soft);
    font-size: 1.13rem;
    margin-bottom: 44px;
    max-width: 60ch;
}
.section-lead--center { text-align: center; margin-left: auto; margin-right: auto; }

/* Liten håndskrevet "kicker" over overskrifter */
.section-kicker {
    display: block;
    font-family: var(--font-hand);
    color: var(--brand-dark);
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 4px;
    transform: rotate(-1.5deg);
    transform-origin: left center;
}
.section-kicker--center { text-align: center; transform: rotate(-1deg); }

/* Håndtegnet understreking — brukes på et nøkkelord */
.hero__accent {
    position: relative;
    color: var(--brand-deep);
    font-style: italic;
    white-space: nowrap;
}
.hero__accent::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -6px;
    height: 12px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M2 8 C 40 2, 80 10, 120 5 S 190 4, 198 7' fill='none' stroke='%23cf7233' stroke-width='3' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}

/* ============================================================
   Knapper
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    line-height: 1.2;
    font-family: inherit;
}

.btn--primary {
    background: var(--brand);
    color: white;
    box-shadow: 0 6px 16px rgba(207, 114, 51, .35), inset 0 -2px 0 rgba(0,0,0,.08);
}
.btn--primary:hover {
    background: var(--brand-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(207, 114, 51, .45), inset 0 -2px 0 rgba(0,0,0,.08);
    text-decoration: none;
}

.btn--ghost {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn--ghost:hover {
    background: var(--brand-soft);
    border-color: var(--brand);
    color: var(--brand-deep);
    text-decoration: none;
}

.btn--large { padding: 16px 30px; font-size: 1.05rem; }
.btn--small { padding: 8px 16px; font-size: .92rem; }
.btn--full { width: 100%; }

/* ============================================================
   Top nav
   ============================================================ */

.topnav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 250, 243, 0.85);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border-bottom: 1px solid var(--line);
}

.topnav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.topnav__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.topnav__logo:hover { text-decoration: none; }
.topnav__logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.topnav__menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.topnav__menu a {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: .96rem;
    transition: color .12s ease;
}
.topnav__menu a:hover { color: var(--brand-deep); text-decoration: none; }
.topnav__menu .btn { color: white; }
.topnav__menu .btn:hover { color: white; }

.topnav__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--ink);
    cursor: pointer;
}

@media (max-width: 768px) {
    .topnav__toggle { display: block; }
    .topnav__logo-img { height: 30px; }
    .topnav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px 20px;
        display: none;
        box-shadow: var(--shadow);
    }
    .topnav__menu.is-open { display: flex; }
    .topnav__menu a { padding: 14px 0; border-bottom: 1px solid var(--line); }
    .topnav__menu .btn { margin-top: 12px; justify-content: center; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -140px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(207, 114, 51, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -160px; left: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(63, 107, 74, 0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 44px 0 60px; }
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--paper);
    color: var(--brand-deep);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .88rem;
    margin-bottom: 22px;
    border: 1px solid var(--brand-tint);
    box-shadow: var(--shadow-sm);
}
.hero__eyebrow i { color: var(--brand); }

.hero h1 { margin-bottom: 22px; }

.hero__lead {
    font-size: 1.22rem;
    color: var(--ink-soft);
    margin-bottom: 34px;
    max-width: 56ch;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px dashed var(--line-strong);
}
.hero__trust-stars { color: #f59e0b; font-size: 1.2rem; letter-spacing: 1px; }
.hero__trust-sub { color: var(--ink-mute); font-size: .9rem; }

.hero__visual {
    position: relative;
}
.hero__visual::before {
    content: "";
    position: absolute;
    inset: -16px -22px -22px -16px;
    background: var(--brand-tint);
    border-radius: var(--radius-xl);
    transform: rotate(-1.2deg);
    z-index: 0;
}
.hero__visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.6);
}

/* ============================================================
   Smerte-seksjon
   ============================================================ */

.pain {
    padding: 90px 0;
    background: var(--bg-soft);
    position: relative;
}

.pain__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 900px) { .pain__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pain__grid { grid-template-columns: 1fr; } }

.pain__card {
    background: var(--paper);
    padding: 26px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pain__card:hover {
    transform: translateY(-3px) rotate(-0.3deg);
    box-shadow: var(--shadow);
    border-color: var(--brand-tint);
}
.pain__card i {
    font-size: 1.4rem;
    color: var(--brand);
    margin-bottom: 14px;
    display: inline-flex;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: var(--brand-soft);
    border-radius: 12px;
}
.pain__card h3 { font-size: 1.05rem; margin-bottom: 6px; font-family: var(--font-sans); }
.pain__card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ============================================================
   Løsning
   ============================================================ */

.solution { padding: 90px 0; }

.solution__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .solution__grid { grid-template-columns: 1fr; } }

.solution__card {
    background: var(--paper);
    padding: 34px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    transition: transform .18s ease, box-shadow .18s ease;
}
.solution__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.solution__icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 18px;
}
.solution__card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.solution__card p { color: var(--ink-soft); margin: 0; }

/* ============================================================
   Moduler
   ============================================================ */

.modules {
    padding: 90px 0;
    background: var(--bg-soft);
}

.module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 90px;
}
.module:first-of-type { margin-top: 60px; }
.module--reverse .module__text { order: 2; }
.module--reverse .module__visual { order: 1; }

@media (max-width: 900px) {
    .module, .module--reverse { grid-template-columns: 1fr; gap: 30px; margin-top: 60px; }
    .module--reverse .module__text { order: 1; }
    .module--reverse .module__visual { order: 2; }
}

.module__eyebrow {
    display: inline-block;
    color: var(--brand-deep);
    background: var(--brand-soft);
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.module h3 { font-size: 1.7rem; margin-bottom: 14px; font-family: var(--font-serif); font-weight: 600; }
.module__text p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 18px; }

.module__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.module__bullets li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--ink);
}
.module__bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: 800;
    font-size: 1rem;
    width: 20px; height: 20px;
    background: #dcefe0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    line-height: 1;
}

.module__visual {
    position: relative;
}
.module__visual::before {
    content: "";
    position: absolute;
    inset: -10px -14px -14px -10px;
    background: var(--brand-tint);
    border-radius: var(--radius-lg);
    transform: rotate(-1deg);
    z-index: 0;
}
.module--reverse .module__visual::before {
    background: var(--accent-soft);
    transform: rotate(1deg);
}
.module__visual img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

/* ============================================================
   Differensiering
   ============================================================ */

.diff { padding: 90px 0; }

.diff__body {
    font-size: 1.1rem;
    color: var(--ink-soft);
    text-align: center;
    max-width: 740px;
    margin: 0 auto 44px;
}

.diff__compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 700px) { .diff__compare { grid-template-columns: 1fr; } }

.diff__col {
    background: var(--paper);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}
.diff__col--us {
    border: 2px solid var(--brand);
    background: var(--brand-soft);
    box-shadow: var(--shadow);
}
.diff__col h4 {
    color: var(--ink);
    margin-bottom: 18px;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-serif);
    font-weight: 600;
}
.diff__col--us h4 { color: var(--brand-deep); }
.diff__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.diff__col li {
    padding: 8px 0;
    color: var(--ink);
}
.diff__col li i {
    color: var(--success);
    margin-right: 10px;
}

/* ============================================================
   Social proof — kundeliste
   ============================================================ */

.social {
    padding: 90px 0;
    background: var(--bg-soft);
}

.social__list {
    list-style: none;
    padding: 0;
    margin: 36px 0 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
}
.social__list li {
    background: var(--paper);
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-weight: 500;
    color: var(--ink);
    font-size: .95rem;
    box-shadow: var(--shadow-sm);
    transition: transform .15s ease, border-color .15s ease, color .15s ease;
}
.social__list li:hover {
    transform: translateY(-2px) rotate(-0.5deg);
    border-color: var(--brand);
    color: var(--brand-deep);
}
.social__list li:nth-child(3n+1) { transform: rotate(-0.6deg); }
.social__list li:nth-child(3n+2) { transform: rotate(0.4deg); }
.social__list li:nth-child(3n+3) { transform: rotate(-0.2deg); }
.social__list li:nth-child(3n+1):hover { transform: translateY(-2px) rotate(-0.6deg); }
.social__list li:nth-child(3n+2):hover { transform: translateY(-2px) rotate(0.4deg); }
.social__list li:nth-child(3n+3):hover { transform: translateY(-2px) rotate(-0.2deg); }

.social__quote {
    max-width: 760px;
    margin: 0 auto;
    background: var(--paper);
    padding: 40px 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
}
.social__quote > i {
    color: var(--brand);
    font-size: 2.2rem;
    position: absolute;
    top: -18px;
    left: 28px;
    background: var(--paper);
    padding: 0 10px;
    z-index: 1;
}
.social__quote blockquote {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.32rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.5;
    position: relative;
    z-index: 1;
    font-weight: 500;
}
.social__attribution {
    margin-top: 18px;
    color: var(--ink-mute);
    font-size: .95rem;
    font-weight: 500;
}

/* ============================================================
   Hilsen-seksjon — personlig touch
   ============================================================ */

.greeting {
    padding: 90px 0;
    background: var(--bg);
    position: relative;
}

.greeting__inner {
    background: linear-gradient(180deg, var(--brand-soft) 0%, var(--paper) 100%);
    border: 1px solid var(--brand-tint);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.greeting__inner::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(207, 114, 51, 0.25), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@media (max-width: 600px) {
    .greeting__inner { padding: 40px 26px; }
}

.greeting__hand {
    display: block;
    font-family: var(--font-hand);
    font-size: 2.2rem;
    color: var(--brand-deep);
    line-height: 1;
    margin-bottom: 8px;
    transform: rotate(-2deg);
}

.greeting__h2 {
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    margin-bottom: 18px;
    font-family: var(--font-serif);
    font-weight: 600;
}

.greeting__body {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 56ch;
    margin: 0 auto 22px;
    line-height: 1.7;
}

.greeting__signoff {
    font-family: var(--font-hand);
    font-size: 1.6rem;
    color: var(--brand-deep);
    margin: 0;
}
.greeting__role {
    font-family: var(--font-sans);
    font-size: .92rem;
    color: var(--ink-mute);
    font-weight: 500;
}

/* ============================================================
   Pricing
   ============================================================ */

.pricing { padding: 90px 0; background: var(--bg-soft); }

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 700px) { .pricing__grid { grid-template-columns: 1fr; } }

.plan {
    background: var(--paper);
    padding: 38px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan--featured {
    border: 2px solid var(--brand);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
    background: linear-gradient(180deg, var(--brand-soft) 0%, var(--paper) 35%);
}
.plan--featured:hover { transform: scale(1.02) translateY(-3px); }
@media (max-width: 700px) {
    .plan--featured { transform: none; }
    .plan--featured:hover { transform: translateY(-3px); }
}

.plan__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: white;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(207, 114, 51, .4);
}

.plan__head {
    margin-bottom: 24px;
    border-bottom: 1px dashed var(--line-strong);
    padding-bottom: 24px;
}
.plan__head h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    font-family: var(--font-serif);
    font-weight: 600;
}
.plan__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}
.plan__amount {
    font-size: 3.1rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
    font-family: var(--font-serif);
}
.plan__unit {
    color: var(--ink-mute);
    font-weight: 500;
}
.plan__sub {
    color: var(--ink-soft);
    font-size: .96rem;
    margin: 0;
}

.plan__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
}
.plan__features li {
    padding: 9px 0;
    color: var(--ink);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.plan__features li i {
    color: var(--success);
    margin-top: 5px;
    flex-shrink: 0;
}

.pricing__assurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 40px;
    margin-top: 44px;
    color: var(--ink-soft);
    font-size: .95rem;
}
.pricing__assurance > div {
    display: inline-flex;
    align-items: center;
}
.pricing__assurance i { color: var(--brand); margin-right: 8px; }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
    padding: 90px 0;
    background: var(--bg);
}

.faq__item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.faq__item:hover { border-color: var(--brand-tint); }
.faq__item[open] {
    border-color: var(--brand);
    box-shadow: var(--shadow-sm);
}
.faq__item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "+";
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--brand);
    transition: transform .2s ease;
    line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body {
    padding: 0 24px 20px;
    color: var(--ink-soft);
    border-top: 1px dashed var(--line);
    padding-top: 16px;
}

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

.contact { padding: 90px 0; background: var(--bg-soft); }

.contact__form {
    background: var(--paper);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    margin-top: 32px;
}
@media (max-width: 600px) { .contact__form { padding: 26px 22px; } }

.contact__honeypot {
    position: absolute !important;
    left: -9999px;
    opacity: 0;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 600px) { .contact__row { grid-template-columns: 1fr; } }

.contact__form label {
    display: block;
    margin-bottom: 16px;
}
.contact__form label > span {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--ink);
    font-size: .92rem;
}
.contact__required { color: #b91c1c; }
.contact__optional { color: var(--ink-mute); font-weight: 400; }

.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: var(--bg);
    transition: border-color .12s ease, box-shadow .12s ease, background .12s ease;
}
.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: var(--paper);
    box-shadow: 0 0 0 4px var(--brand-soft);
}
.contact__form textarea { resize: vertical; min-height: 110px; }

.contact__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: var(--bg-soft);
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: .9rem;
    color: var(--ink-soft);
    border: 1px solid var(--line);
}
.contact__consent input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--brand);
}
.contact__consent span { flex: 1; }

.contact__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.contact__assurance { color: var(--ink-mute); font-size: .9rem; }

.contact__status {
    margin-top: 16px;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: .95rem;
    display: none;
}
.contact__status.is-success {
    display: block;
    background: #e7f4ea;
    color: var(--success);
    border: 1px solid #b6dabe;
}
.contact__status.is-error {
    display: block;
    background: #fdecec;
    color: #b91c1c;
    border: 1px solid #f3b5b5;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
    background: var(--ink);
    color: rgba(255, 250, 243, 0.72);
    padding: 50px 0;
    font-size: .95rem;
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.footer strong { color: white; }
.footer__line { font-size: .9rem; opacity: 0.7; max-width: 38ch; }
.footer__links { display: flex; gap: 22px; }
.footer__links a {
    color: rgba(255, 250, 243, 0.88);
    text-decoration: none;
}
.footer__links a:hover { color: white; text-decoration: underline; text-underline-offset: 3px; }
.footer__copy { opacity: 0.55; font-size: .85rem; }
.footer__links a:hover { color: white; }
.footer a { color: rgba(255, 250, 243, 0.95); }

/* ============================================================
   Hilsen — perks-grid
   ============================================================ */

.greeting__link {
    color: var(--brand-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}
.greeting__link:hover { color: var(--brand-dark); }

.greeting__perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    margin: 24px 0 28px;
}
.greeting__perk {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--paper);
    border: 1px solid var(--brand-tint);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.greeting__perk i { color: var(--brand); }

/* ============================================================
   Nyheter — kort, liste, hjem-seksjon
   ============================================================ */

.news-home {
    padding: 90px 0;
    background: var(--bg);
    position: relative;
}
.news-home__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 16px;
}
@media (max-width: 900px) { .news-home__grid { grid-template-columns: 1fr; gap: 22px; } }
.news-home__more {
    text-align: center;
    margin-top: 44px;
}

.page-hero {
    padding: 90px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(207, 114, 51, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(2.2rem, 4.8vw, 3.2rem);
    margin-bottom: 16px;
}

.news-list {
    padding: 40px 0 100px;
}
.news-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) { .news-list__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .news-list__grid { grid-template-columns: 1fr; } }

.news-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--brand-tint);
}
.news-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-soft);
}
.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.news-card:hover .news-card__media img { transform: scale(1.04); }
.news-card__body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.news-card__date {
    color: var(--brand-deep);
    font-family: var(--font-hand);
    font-size: 1.15rem;
    line-height: 1;
}
.news-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.01em;
    font-weight: 600;
}
.news-card__title a {
    color: var(--ink);
    text-decoration: none;
}
.news-card__title a:hover {
    color: var(--brand-deep);
    text-decoration: none;
}
.news-card__excerpt {
    color: var(--ink-soft);
    margin: 4px 0 0;
    font-size: .98rem;
}
.news-card__link {
    margin-top: auto;
    padding-top: 14px;
    color: var(--brand-deep);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .95rem;
}
.news-card__link:hover {
    color: var(--brand-dark);
    text-decoration: none;
    gap: 10px;
}

.news-empty {
    background: var(--paper);
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 60px 30px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.news-empty i {
    font-size: 2.4rem;
    color: var(--brand);
    margin-bottom: 14px;
}
.news-empty h2 {
    margin-bottom: 10px;
    font-family: var(--font-serif);
}
.news-empty p {
    color: var(--ink-soft);
    margin-bottom: 22px;
}

/* ============================================================
   Artikkel (enkeltnyhet)
   ============================================================ */

.article {
    padding: 30px 0 0;
}
.article__header {
    padding: 30px 0 24px;
    text-align: center;
}
.article__breadcrumb {
    font-size: .9rem;
    color: var(--ink-mute);
    margin-bottom: 24px;
}
.article__breadcrumb a {
    color: var(--ink-mute);
    text-decoration: none;
}
.article__breadcrumb a:hover { color: var(--brand-deep); }
.article__breadcrumb span[aria-hidden="true"] {
    margin: 0 6px;
    color: var(--line-strong);
}
.article__breadcrumb-current { color: var(--ink); }
.article__date {
    font-family: var(--font-hand);
    color: var(--brand-deep);
    font-size: 1.5rem;
    display: inline-block;
    transform: rotate(-1.5deg);
    margin-bottom: 8px;
}
.article__title {
    font-size: clamp(2rem, 4.8vw, 3.2rem);
    margin: 8px 0 18px;
    letter-spacing: -0.02em;
    font-variation-settings: 'opsz' 144;
}
.article__lead {
    font-size: 1.22rem;
    color: var(--ink-soft);
    max-width: 56ch;
    margin: 0 auto;
    line-height: 1.55;
}
.article__media {
    margin: 30px 0 40px;
}
.article__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.article__content {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--ink);
    padding-bottom: 30px;
}
.article__content h2 {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    margin: 40px 0 14px;
    font-weight: 600;
    letter-spacing: -0.015em;
}
.article__content h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin: 32px 0 10px;
    font-weight: 600;
}
.article__content p { margin: 0 0 18px; }
.article__content ul,
.article__content ol { margin: 0 0 20px; padding-left: 28px; }
.article__content li { margin: 8px 0; }
.article__content blockquote {
    border-left: 4px solid var(--brand);
    padding: 4px 22px;
    margin: 28px 0;
    font-style: italic;
    color: var(--ink-soft);
    font-family: var(--font-serif);
    font-size: 1.18rem;
}
.article__content img {
    border-radius: var(--radius);
    margin: 24px 0;
    box-shadow: var(--shadow-sm);
}
.article__content a {
    color: var(--brand-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}
.article__content a:hover { color: var(--brand-dark); }
.article__content hr {
    border: 0;
    border-top: 1px dashed var(--line-strong);
    margin: 36px 0;
}

.article__cta {
    margin: 50px auto 80px;
    padding: 40px;
    background: linear-gradient(180deg, var(--brand-soft) 0%, var(--paper) 100%);
    border: 1px solid var(--brand-tint);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow);
}
.article__cta-kicker {
    font-family: var(--font-hand);
    color: var(--brand-deep);
    font-size: 1.4rem;
    transform: rotate(-1.5deg);
    display: inline-block;
    margin-bottom: 4px;
}
.article__cta h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin: 6px 0 10px;
    font-weight: 600;
}
.article__cta p {
    color: var(--ink-soft);
    margin: 0 0 20px;
}

.news-related {
    padding: 70px 0 100px;
    background: var(--bg-soft);
}

/* ============================================================
   Admin
   ============================================================ */

.admin-body {
    background: var(--bg);
    min-height: 100vh;
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
}

.admin-topbar {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
}
.admin-topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.admin-topbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.admin-topbar__brand img { height: 28px; }
.admin-topbar__label {
    font-family: var(--font-hand);
    font-size: 1.3rem;
    color: var(--brand-deep);
    line-height: 1;
}
.admin-topbar__nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.admin-topbar__nav a,
.admin-topbar__nav .admin-link {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}
.admin-topbar__nav a:hover,
.admin-topbar__nav .admin-link:hover { color: var(--brand-deep); text-decoration: none; }
.admin-topbar__nav .is-active { color: var(--brand-deep); }
.admin-topbar__logout { margin: 0; padding: 0; }

.admin-main { padding: 40px 0 80px; }
.admin-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.admin-section {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .admin-section { padding: 22px; } }
.admin-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.admin-section__head h1 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    margin: 0;
    font-weight: 600;
}

.admin-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: .96rem;
}
.admin-alert--success { background: #e7f4ea; color: var(--success); border: 1px solid #b6dabe; }
.admin-alert--error   { background: #fdecec; color: #b91c1c; border: 1px solid #f3b5b5; }

.admin-empty {
    text-align: center;
    padding: 60px 30px;
    color: var(--ink-soft);
}
.admin-empty i { font-size: 2.4rem; color: var(--brand); margin-bottom: 14px; }
.admin-empty h2 { font-family: var(--font-serif); margin-bottom: 10px; }
.admin-empty p { margin-bottom: 22px; }

/* Tabell */
.admin-table {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.admin-table__head,
.admin-table__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 18px;
}
.admin-table__head {
    background: var(--bg-soft);
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--line);
}
.admin-table__row + .admin-table__row {
    border-top: 1px solid var(--line);
}
.admin-table__row:hover { background: var(--bg-soft); }
.admin-table__title a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}
.admin-table__title a:hover { color: var(--brand-deep); }
.admin-table__title small {
    display: block;
    color: var(--ink-mute);
    font-weight: 400;
    font-size: .85rem;
    margin-top: 2px;
}
.admin-table__actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.admin-table__actions a,
.admin-table__actions button {
    color: var(--ink-mute);
    background: none;
    border: 0;
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
    text-decoration: none;
}
.admin-table__actions a:hover { color: var(--brand-deep); }
.admin-table__actions button:hover { color: #b91c1c; }
.admin-table__delete { display: inline; margin: 0; padding: 0; }

@media (max-width: 700px) {
    .admin-table__head { display: none; }
    .admin-table__row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

.admin-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
}
.admin-status--draft     { background: #efe9da; color: #6b5b3b; }
.admin-status--published { background: #d6efdc; color: #1f6b30; }

.admin-mute { color: var(--ink-mute); }

/* Skjema */
.admin-form { margin-top: 4px; }
.admin-form label {
    display: block;
    margin-bottom: 18px;
}
.admin-form label > span {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
    font-size: .95rem;
}
.admin-form label > span em {
    color: #b91c1c;
    font-style: normal;
    margin-left: 2px;
}
.admin-form label small {
    display: block;
    color: var(--ink-mute);
    font-size: .85rem;
    margin-top: 6px;
}
.admin-form input[type="text"],
.admin-form input[type="password"],
.admin-form input[type="email"],
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: var(--bg);
    transition: border-color .12s ease, box-shadow .12s ease, background .12s ease;
}
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: var(--brand);
    background: var(--paper);
    box-shadow: 0 0 0 4px var(--brand-soft);
}
.admin-form textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.55;
}
.admin-form__html {
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: .92rem;
    min-height: 360px;
    background: var(--paper);
}

.admin-form__field { margin-bottom: 22px; }
.admin-form__editor-label { display: block; margin-bottom: 8px; }
.admin-form__editor-label > span {
    display: block;
    font-weight: 600;
    color: var(--ink);
    font-size: .95rem;
}
.admin-form__editor-label > span em {
    color: #b91c1c;
    font-style: normal;
    margin-left: 2px;
}
.admin-form__hidden-textarea {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ===== Quill WYSIWYG ===== */
.admin-quill { background: var(--bg); }
.ql-toolbar.ql-snow {
    background: var(--bg-soft) !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 10px 10px 0 0 !important;
    padding: 10px 12px !important;
}
.ql-container.ql-snow {
    border: 1px solid var(--line-strong) !important;
    border-top: 0 !important;
    border-radius: 0 0 10px 10px !important;
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
    background: var(--bg) !important;
    min-height: 420px;
}
.ql-editor {
    min-height: 420px;
    padding: 22px 26px !important;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink);
}
.ql-editor h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink);
    margin: 28px 0 10px;
    font-weight: 600;
    letter-spacing: -0.015em;
}
.ql-editor h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--ink);
    margin: 22px 0 8px;
    font-weight: 600;
}
.ql-editor p { margin: 0 0 14px; }
.ql-editor ul, .ql-editor ol { margin: 0 0 14px; padding-left: 26px; }
.ql-editor li { margin: 4px 0; }
.ql-editor blockquote {
    border-left: 4px solid var(--brand) !important;
    padding: 4px 18px !important;
    margin: 18px 0 !important;
    color: var(--ink-soft);
    font-style: italic;
    font-family: var(--font-serif);
}
.ql-editor a { color: var(--brand-deep); text-decoration: underline; text-underline-offset: 3px; }
.ql-editor img {
    border-radius: var(--radius);
    margin: 14px 0;
    box-shadow: var(--shadow-sm);
}
.ql-editor.ql-blank::before {
    color: var(--ink-mute) !important;
    font-style: normal !important;
    font-size: 1.05rem;
    left: 26px !important;
    right: 26px !important;
}
.ql-snow .ql-stroke { stroke: var(--ink-soft); }
.ql-snow .ql-fill   { fill: var(--ink-soft); }
.ql-snow .ql-picker { color: var(--ink-soft); }
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke { stroke: var(--brand-deep) !important; }
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill { fill: var(--brand-deep) !important; }
.ql-snow .ql-toolbar button:hover,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label.ql-active { color: var(--brand-deep) !important; }
.ql-snow .ql-tooltip {
    background: var(--paper) !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 10px !important;
    box-shadow: var(--shadow);
    color: var(--ink) !important;
}
.ql-snow .ql-tooltip input[type="text"] {
    border: 1px solid var(--line-strong) !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    font-family: inherit !important;
}

.admin-form__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}
@media (max-width: 900px) { .admin-form__grid { grid-template-columns: 1fr; } }

.admin-form__side {
    border-left: 1px dashed var(--line-strong);
    padding-left: 28px;
}
@media (max-width: 900px) {
    .admin-form__side { border-left: 0; padding-left: 0; border-top: 1px dashed var(--line-strong); padding-top: 22px; margin-top: 8px; }
}

.admin-form__group {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--line);
}
.admin-form__group:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.admin-form__group small code {
    background: var(--bg-soft);
    padding: 1px 5px;
    border-radius: 4px;
    font-size: .82rem;
}

.admin-form__inline {
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-form__inline > span { margin: 0; flex: 1; }
.admin-form__inline--mt { margin-top: 10px; }

.admin-form__thumb {
    margin-top: 12px;
    padding: 10px;
    background: var(--bg-soft);
    border-radius: 10px;
}
.admin-form__thumb img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.admin-form__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.admin-form__actions--bottom {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.admin-link {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.admin-link:hover { color: var(--brand-deep); }
.admin-link--right { margin-left: auto; }

.admin-form--narrow { max-width: 480px; }
.admin-form--wide   { max-width: 100%; }

/* Login */
.admin-login {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background:
        radial-gradient(800px 400px at 50% 10%, rgba(207, 114, 51, 0.18), transparent 70%),
        var(--bg);
}
.admin-login__logo { margin-bottom: 24px; }
.admin-login__logo img { height: 38px; }
.admin-login__card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 380px;
    width: 100%;
    box-shadow: var(--shadow);
}
.admin-login__card h1 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin: 0 0 6px;
    font-weight: 600;
}
.admin-login__card p {
    color: var(--ink-soft);
    margin-bottom: 22px;
}
.admin-login__card label { display: block; margin-bottom: 16px; }
.admin-login__card label > span {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: .95rem;
}
.admin-login__card input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg);
}
.admin-login__card input:focus {
    outline: none;
    border-color: var(--brand);
    background: var(--paper);
    box-shadow: 0 0 0 4px var(--brand-soft);
}

/* ============================================================
   Mitt Grendehus — landingsside-spesifikke seksjoner
   ============================================================ */

/* ---- Hero: hus-illustrasjon (erstatter foto) ---- */
.house-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.house-svg {
    display: block;
    width: 100%;
    height: auto;
    background: linear-gradient(180deg, #e7efe5 0%, var(--paper) 100%);
}
.house-foot {
    padding: 15px 20px;
    border-top: 1px solid var(--line);
    font-size: .9rem;
    color: var(--ink-mute);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.house-foot__url { font-weight: 600; color: var(--ink-soft); }
.house-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--moss);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: .01em;
    white-space: nowrap;
}
.house-pill::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--moss-bright);
    box-shadow: 0 0 0 3px rgba(90,148,104,.35);
}

/* ---- Bærebjelker (gjenbruker .solution, men med fargede topp-streker) ---- */
.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .pillars__grid { grid-template-columns: 1fr; } }
.pillar {
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 4px solid var(--moss);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 30px 28px 34px;
    transition: transform .18s ease, box-shadow .18s ease;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pillar:nth-child(2) { border-top-color: var(--brand); }
.pillar:nth-child(3) { border-top-color: var(--wood); }
.pillar__num {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--ink-mute);
    text-transform: uppercase;
}
.pillar h3 { font-size: 1.3rem; margin: 10px 0 10px; font-family: var(--font-serif); font-weight: 600; }
.pillar p { color: var(--ink-soft); margin: 0; }

/* ---- SIGNATUR: utleie-band (grend-grønn) ---- */
.rent {
    background: var(--moss);
    color: #eef4ec;
    padding: 92px 0;
    position: relative;
    overflow: hidden;
}
.rent::after {
    content: "";
    position: absolute;
    bottom: -160px; right: -120px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(255,255,255,.10), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.rent > .container { position: relative; z-index: 1; }
.rent .section-kicker { color: #e9c9a3; }
.rent h2 { color: #fff; max-width: 20ch; }
.rent__lead { color: #d6e6da; font-size: 1.13rem; max-width: 52ch; margin: 0; }

.durations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 40px 0 44px;
}
@media (max-width: 760px) { .durations { grid-template-columns: 1fr 1fr; } }
.dur {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--radius);
    padding: 20px 18px;
    transition: background .15s ease, transform .15s ease;
}
.dur:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.dur__t { font-family: var(--font-serif); font-weight: 600; font-size: 1.2rem; color: #fff; }
.dur__use { font-size: .86rem; color: #cfe3d4; margin-top: 6px; }
.dur__price {
    font-size: .9rem;
    color: #eef4ec;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.2);
}
.dur__price b { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; }

.flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
@media (max-width: 760px) { .flow { grid-template-columns: 1fr; } }
.step { padding: 26px 22px; position: relative; }
.step + .step { border-left: 1px solid rgba(255,255,255,.16); }
@media (max-width: 760px) {
    .step + .step { border-left: none; border-top: 1px solid rgba(255,255,255,.16); }
}
.step__n {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 12px;
}
.step__h { font-family: var(--font-serif); font-weight: 600; font-size: 1.08rem; color: #fff; margin-bottom: 6px; }
.step__d { font-size: .92rem; color: #d6e6da; margin: 0; }
.rent__note { margin: 26px 0 0; font-size: .9rem; color: #c4d9c9; }

/* ---- Medlemmer: SVG-illustrasjon i .module__visual ---- */
.module__visual--register::before { background: var(--accent-soft); }
.member-svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    position: relative;
    z-index: 1;
    background: var(--paper);
}

/* ---- Sammenligning mot rene bookingverktøy ---- */
.compare-wrap { padding: 90px 0; background: var(--bg); }
.compare {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
    background: var(--paper);
}
.crow {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}
.crow > div {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    font-size: .98rem;
}
.crow:last-child > div { border-bottom: none; }
.crow__feat { font-weight: 600; color: var(--ink); }
.crow__other { color: var(--ink-soft); }
.crow__other i { color: var(--ink-mute); margin-right: 8px; }
.crow__mine { background: var(--accent-soft); font-weight: 600; color: var(--moss-deep); }
.crow__mine i { color: var(--success); margin-right: 8px; }
.crow--head > div {
    background: var(--ink);
    color: var(--paper);
    font-weight: 600;
    font-family: var(--font-sans);
    font-size: .95rem;
    border-bottom: none;
}
.crow--head .crow__mine { background: var(--moss); color: #fff; }
@media (max-width: 600px) {
    .crow > div { padding: 12px 12px; font-size: .85rem; }
    .crow--head > div { font-size: .82rem; }
}

/* ---- Kom i gang: tre steg ---- */
.start {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: startstep;
}
@media (max-width: 760px) { .start { grid-template-columns: 1fr; } }
.startcard {
    counter-increment: startstep;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform .18s ease, box-shadow .18s ease;
}
.startcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.startcard::before {
    content: counter(startstep, decimal-leading-zero);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--wood);
    display: block;
    margin-bottom: 14px;
    line-height: 1;
}
.startcard h3 { font-size: 1.25rem; margin-bottom: 8px; font-family: var(--font-serif); font-weight: 600; }
.startcard p { color: var(--ink-soft); margin: 0; }

/* Hero trust-linje uten stjerner (gjenbruk av .hero__trust) */
.hero__trust-icon {
    color: var(--moss);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ============================================================
   Tilgjengelighet — fokus og redusert bevegelse
   ============================================================ */

/* Synlig tastaturfokus (WCAG 2.1) */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--moss);
    outline-offset: 2px;
    border-radius: 4px;
}

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