/* ==============================
   RADIKALT ANDERLEDES DESIGN
   Lys, flad, editorial + accent
   ============================== */

:root{
    --bg:#f8fafc;
    --surface:#ffffff;
    --surface-alt:#f1f5f9;
    --text:#0f172a;
    --muted:#475569;
    --accent:#6366f1; /* indigo */
    --accent-2:#22c55e; /* grøn */

    --radius-sm:6px;
    --radius-md:12px;
    --radius-lg:20px;

    --container:1080px;
}

/* RESET */
*{
    box-sizing:border-box;
}
body{
    margin:0;
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
}

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

/* CONTAINER */
.container{
    max-width:var(--container);
    margin:0 auto;
    padding:2.5rem 1.5rem;
}

/* HEADER – FLAD & REN */
.topbar{
    border-bottom:1px solid #e2e8f0;
    background:var(--surface);
}
.topbar-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:.75rem;
}
.logo{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--accent);
    color:white;
    display:grid;
    place-items:center;
    font-weight:800;
}
.logo-text span{
    display:block;
    font-size:.8rem;
    color:var(--muted);
}

/* NAV */
.main-nav ul{
    display:flex;
    gap:1.5rem;
    list-style:none;
    margin:0;
    padding:0;
}
.main-nav a{
    text-decoration:none;
    color:var(--muted);
    font-weight:600;
}
.main-nav a:hover{
    color:var(--accent);
}

/* INTRO – SPLIT LAYOUT */
.intro{
    background:linear-gradient(135deg,#eef2ff,#f8fafc);
}
.intro-grid{
    display:grid;
    grid-template-columns:1.3fr .9fr;
    gap:3rem;
    align-items:center;
}

.intro h1{
    font-size:clamp(2.4rem,5vw,3.4rem);
    line-height:1.1;
    margin:0 0 1rem 0;
}

.intro-lead{
    font-size:1.1rem;
    color:var(--muted);
    max-width:48ch;
}

/* BUTTONS */
.intro-actions{
    margin:2rem 0;
    display:flex;
    gap:1rem;
}
.btn{
    padding:.8rem 1.6rem;
    border-radius:var(--radius-sm);
    text-decoration:none;
    font-weight:700;
}
.btn.primary{
    background:var(--accent);
    color:white;
}
.btn.secondary{
    border:2px solid var(--accent);
    color:var(--accent);
}

/* FACTS – LIST I STEDET FOR CARDS */
.quick-facts{
    list-style:none;
    padding:0;
    margin:2rem 0 0 0;
}
.quick-facts li{
    padding:.5rem 0;
    border-bottom:1px dashed #cbd5f5;
    font-size:.95rem;
}

/* IMAGE */
.intro-image img{
    border-radius:var(--radius-lg);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* CONTACT FORM */
.contact-form{
    display:block;
}
.contact-form label{
    display:block;
    font-weight:600;
    margin-bottom:.6rem;
    color:var(--text);
}
.contact-form input,
.contact-form textarea{
    width:100%;
    padding:.6rem .75rem;
    border:1px solid #e6eefb;
    border-radius:8px;
    margin-top:.35rem;
    font-size:1rem;
    background:linear-gradient(180deg, white, #fbfdff);
}
.contact-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1rem;
    margin-bottom:1rem;
}
.contact-actions{
    margin-top:1rem;
}

@media(max-width:700px){
    .contact-row{
        grid-template-columns:1fr;
    }
}

/* HIGHLIGHTS – HORIZONTAL STRIP */
.highlights{
    background:var(--surface);
}
.highlights h2{
    font-size:2rem;
    margin-bottom:2rem;
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}

.card{
    padding:2rem;
    border-left:6px solid var(--accent-2);
    background:var(--surface-alt);
}
.card h3{
    margin-top:0;
}
.card p{
    color:var(--muted);
}

/* FOOTER – MINIMAL */
.footer{
    border-top:1px solid #e2e8f0;
}
.footer-inner{
    text-align:center;
    font-size:.85rem;
    color:var(--muted);
}

/* RESPONSIVE */
@media(max-width:900px){
    .intro-grid{
        grid-template-columns:1fr;
    }
    .card-grid{
        grid-template-columns:1fr;
    }
}
