:root {
    --color-bg: #1a1a1a;
    --color-bg-dark: #111111;
    --color-surface: #222222;
    --color-surface-2: #2a2a2a;
    --color-surface-warm: #1e1c1a;
    --color-text: #f0ede8;
    --color-text-muted: #a09a90;
    --color-orange: #e87830;
    --color-orange-light: #f09050;
    --color-orange-dark: #c85e18;
    --color-orange-glow: rgba(232, 120, 48, 0.15);
    --color-border: #333330;
    --color-border-light: #3a3a36;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --max-width: 1200px;
    --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    font-size: 16px;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ═══════ NAV ═══════ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo-img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 2.8rem; list-style: none; }
.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-orange); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span { width: 24px; height: 1.5px; background: var(--color-text); transition: all 0.3s; display: block; }

/* ═══════ HERO ═══════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(17,17,17,0.7) 0%, rgba(17,17,17,0.3) 40%, rgba(17,17,17,0.6) 100%),
        url('images/hero-mountain.webp') center/cover no-repeat;
    background-color: #1a1410;
}
.hero-atmosphere {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 70% 30%, rgba(232, 120, 48, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 70%, rgba(232, 120, 48, 0.04) 0%, transparent 60%),
        linear-gradient(160deg, #1a1410 0%, #111 40%, #1a1815 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}
.hero-tag {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 700px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em { color: var(--color-orange); font-style: italic; }
.hero-sub {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-orange);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}
.hero-cta:hover { background: var(--color-orange-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232, 120, 48, 0.3); }
.hero-cta svg { width: 14px; height: 14px; transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(3px); }
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: fadeUp 0.8s 1.2s forwards;
}
.scroll-hint span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-muted); }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--color-orange), transparent); animation: scrollPulse 2s infinite; }

/* ═══════ SECTIONS ═══════ */
section { padding: 6rem 2rem; }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-tag { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-orange); font-weight: 600; margin-bottom: 0.8rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1.2rem; max-width: 550px; }
.section-lead { font-size: 1.05rem; color: var(--color-text-muted); max-width: 520px; margin-bottom: 3rem; line-height: 1.8; font-weight: 300; }

/* ═══════ STORY GRID ═══════ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-text p { color: var(--color-text-muted); margin-bottom: 1.2rem; font-weight: 300; line-height: 1.85; }
.story-image { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--color-surface); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-image::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); pointer-events: none; }

/* ═══════ VALUES ═══════ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--color-orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.value-card:hover { border-color: rgba(232, 120, 48, 0.25); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.value-card:hover::before { transform: scaleX(1); }
.value-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--color-orange); opacity: 0.25; line-height: 1; margin-bottom: 1.2rem; }
.value-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.7rem; font-weight: 400; }
.value-card p { color: var(--color-text-muted); font-size: 0.92rem; font-weight: 300; }

/* ═══════ TEAM IMAGES ═══════ */
.team-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-img-card { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--color-surface); }
.team-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-img-card:hover img { transform: scale(1.05); }

/* ═══════ EXPERTISE ═══════ */
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.expertise-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2.5rem 2rem; transition: all 0.4s; }
.expertise-card:hover { border-color: rgba(232, 120, 48, 0.25); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.expertise-icon { width: 48px; height: 48px; border-radius: 8px; background: var(--color-orange-glow); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--color-orange); }
.expertise-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.7rem; font-weight: 400; }
.expertise-card p { color: var(--color-text-muted); font-size: 0.92rem; font-weight: 300; line-height: 1.75; }

/* ═══════ BENEFITS (karriär) ═══════ */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.benefit-card { display: flex; gap: 1.5rem; padding: 1.8rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); transition: all 0.4s; }
.benefit-card:hover { border-color: rgba(232, 120, 48, 0.25); transform: translateY(-2px); }
.benefit-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--color-orange); opacity: 0.35; line-height: 1; flex-shrink: 0; min-width: 36px; }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.4rem; font-weight: 400; }
.benefit-card p { color: var(--color-text-muted); font-size: 0.88rem; font-weight: 300; line-height: 1.7; }

/* ═══════ MISSION ═══════ */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mission-block { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2.5rem; position: relative; }
.mission-block::before { content: ''; position: absolute; left: 0; top: 1.5rem; bottom: 1.5rem; width: 3px; background: var(--color-orange); border-radius: 2px; }
.mission-block h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1rem; font-weight: 400; color: var(--color-orange); }
.mission-block p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.85; font-weight: 300; }

/* ═══════ CTA BAND ═══════ */
.cta-band {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(17,17,17,0.85), rgba(17,17,17,0.85)),
        url('images/cta-bg.jpg') center/cover no-repeat;
    background-color: var(--color-surface-warm);
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.8rem; position: relative; }
.cta-band p { color: var(--color-text-muted); font-size: 1rem; max-width: 460px; margin: 0 auto 2rem; font-weight: 300; position: relative; }

/* ═══════ CLIENTS ═══════ */
.clients-section { padding: 4rem 2rem; background: var(--color-bg-dark); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.clients-section .section-tag { text-align: center; }
.clients-section h2 { font-family: var(--font-display); font-size: 1.5rem; text-align: center; margin-bottom: 2.5rem; font-weight: 400; }
.client-logos { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; }
.client-logos img { height: 50px; width: auto; max-width: 140px; object-fit: contain; background: #ffffff; padding: 14px 20px; border-radius: 10px; box-sizing: content-box; }

/* ═══════ KONTAKT ═══════ */
#kontakt { background: var(--color-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 1.5rem; font-weight: 400; }
.contact-item { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--color-border); color: var(--color-text-muted); text-decoration: none; transition: color 0.3s; font-size: 0.95rem; font-weight: 300; }
a.contact-item:hover { color: var(--color-orange); }
.contact-item svg { width: 18px; height: 18px; color: var(--color-orange); flex-shrink: 0; }
.social-links { display: flex; gap: 0.8rem; margin-top: 2rem; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--color-border); color: var(--color-text-muted); transition: all 0.3s; }
.social-links a:hover { border-color: var(--color-orange); color: var(--color-orange); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 6px; padding: 0.9rem 1.1rem; font-family: var(--font-body); font-size: 0.92rem; color: var(--color-text); transition: border-color 0.3s; outline: none; font-weight: 300; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--color-orange); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--color-text-muted); opacity: 0.5; }
.contact-form textarea { min-height: 130px; resize: vertical; }

/* ═══════ BUTTONS ═══════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; background: var(--color-orange); color: #fff; padding: 0.85rem 2rem; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em; border: none; cursor: pointer; font-family: var(--font-body); transition: all 0.3s; }
.btn:hover { background: var(--color-orange-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232, 120, 48, 0.3); }
.btn-outline { background: transparent; border: 1px solid var(--color-orange); color: var(--color-orange); }
.btn-outline:hover { background: var(--color-orange); color: #fff; }

/* ═══════ FOOTER ═══════ */
footer { padding: 2.5rem 2rem; border-top: 1px solid var(--color-border); background: var(--color-bg-dark); }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-inner p { color: var(--color-text-muted); font-size: 0.82rem; font-weight: 300; }

/* ═══════ ANIMATIONS ═══════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.7; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.no-js .reveal { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 960px) {
    .story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid, .expertise-grid { grid-template-columns: 1fr 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .team-images { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(17, 17, 17, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--color-border); }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    section { padding: 4rem 1.5rem; }
    .values-grid, .expertise-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .team-images { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-content { padding: 0 1.5rem; }
}
