/* ============================================================
   GLÄNNE & SÖNER — startsidans egna regler
   Utbrutet ur index.html:s inline-<style> 2026-08-03. Laddas EFTER
   site.css/enhancements.css/blog.css och vinner därför över dem,
   precis som inline-blocket gjorde. Rör inga andra sidor.
   ============================================================ */
:root {
            --gold: #C9A227;
            --gold-dark: #A68820;
            --gold-light: #E8D9A0;
            --beige: #F7F4EE;
            --beige-dark: #EDE8DF;
            --white: #FFFFFF;
            --dark: #2D2A26;
            --text: #4A4540;
            --muted: #8A857D;
        }.nav-menu a {
            font-size: 0.9rem;
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        @media (max-width: 800px) {
            .nav-toggle { display: flex; }
            .nav-menu {
                display: none;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                border-bottom: 1px solid rgba(0,0,0,0.06);
            }
            .nav-menu.active { display: flex; }
        }

        /* ========================================
           HERO
           ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            position: relative;
            background: url('../images/hero.webp?v=20260731') center/cover no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right,
                rgba(247, 244, 238, 0.96) 0%,
                rgba(247, 244, 238, 0.93) 34%,
                rgba(247, 244, 238, 0.55) 58%,
                rgba(247, 244, 238, 0.08) 80%,
                rgba(247, 244, 238, 0) 100%);
        }

        .hero .container {
            position: relative;
            z-index: 1;
            max-width: none;
            width: 100%;
            padding-left: clamp(24px, 6vw, 110px);
        }

        .hero-content { max-width: 600px; }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 500;
            line-height: 1.2;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--text);
            margin-bottom: 28px;
        }

        .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

        .btn-white { background: var(--white); color: var(--dark); }
        .btn-white:hover { background: var(--beige); }

        @media (max-width: 900px) {
            /* Mindre hero-bild på mobil (134 KB i stället för 316 KB).
               Overlayen är 90 % opak här, så bilden syns knappt ändå. */
            .hero { background-image: url('../images/hero-800.webp'); }
            .hero::before { background: rgba(247, 244, 238, 0.9); }
            .hero .container { padding-left: 24px; }
            .hero-content { max-width: 100%; text-align: center; }
            .hero-content h1 { font-size: 2.4rem; }
            .hero-content p { margin-left: auto; margin-right: auto; max-width: 500px; }
            .hero-buttons { justify-content: center; }
        }

        @media (max-width: 600px) {
            .hero-content h1 { font-size: 2rem; }
        }

        /* ========================================
           SECTIONS
           ======================================== */
        .section { padding: 90px 0; }.section-dark { background: var(--dark); color: var(--white); }        .section-dark .section-label { color: var(--gold-light); }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .section-dark .section-title { color: var(--white); }

        .section-subtitle {
            color: var(--muted);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

        /* ========================================
           SERVICES GRID (4 kort)
           ======================================== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: all 0.25s;
            border: 1px solid rgba(0,0,0,0.04);
        }

        .section-beige .service-card { background: var(--white); }
        .section-white .service-card { background: var(--beige); }

        .service-card:hover {
            box-shadow: 0 12px 35px rgba(0,0,0,0.08);
            transform: translateY(-4px);
        }

        .service-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .service-card-body { padding: 22px; }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .service-card p {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.5;
        }

        @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 550px) { .services-grid { grid-template-columns: 1fr; } }

        /* ========================================
           FÖRELÄSNINGAR SECTION
           ======================================== */
        .forelasningar-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .forelasningar-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .forelasningar-text p {
            margin-bottom: 16px;
            color: var(--text);
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 24px 0;
        }

        .topic-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: var(--white);
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--dark);
        }

        .section-white .topic-item { background: var(--beige); }

        .topic-item span { font-size: 1.2rem; }

        .stats-row {
            display: flex;
            gap: 40px;
            margin-top: 24px;
        }

        .stat-item { text-align: center; }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--gold);
            font-weight: 600;
        }
        .forelasningar-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        @media (max-width: 800px) {
            .forelasningar-content { grid-template-columns: 1fr; text-align: center; }
            .forelasningar-image { order: -1; }
            .forelasningar-image img { max-width: 400px; margin: 0 auto; }
            .topics-grid { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
            .stats-row { justify-content: center; }
        }

        /* ========================================
           COACHNING SECTION
           ======================================== */
        .coaching-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .coaching-intro p { color: var(--text); font-size: 1.05rem; }

        .coaching-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .coaching-card {
            background: var(--white);
            border-radius: 12px;
            padding: 32px;
            position: relative;
            border: 1px solid rgba(0,0,0,0.04);
        }

        .section-white .coaching-card { background: var(--beige); }

        .coaching-card.featured {
            border: 2px solid var(--gold);
        }

        .coaching-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            background: var(--gold);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .coaching-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .coaching-price {
            color: var(--gold);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 16px;
        }

        .coaching-card p {
            color: var(--text);
            margin-bottom: 16px;
            font-size: 0.95rem;
        }

        .coaching-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .coaching-features li {
            padding: 6px 0;
            font-size: 0.9rem;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .coaching-features li::before {
            content: '✓';
            color: var(--gold);
            font-weight: bold;
        }

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

        /* ========================================
           RETREAT SECTION
           ======================================== */
        .retreat-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .retreat-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .retreat-text p { color: var(--text); margin-bottom: 16px; }

        .retreat-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 24px 0;
        }

        .retreat-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .retreat-feature-icon {
            width: 40px;
            height: 40px;
            background: var(--gold-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .retreat-feature-text h4 {
            font-size: 0.95rem;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .retreat-feature-text p {
            font-size: 0.85rem;
            color: var(--muted);
            margin: 0;
        }

        .next-retreat {
            background: var(--white);
            border-radius: 12px;
            padding: 28px;
            border: 1px solid rgba(0,0,0,0.06);
        }

        .section-white .next-retreat { background: var(--beige); }

        .next-retreat-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .next-retreat h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .next-retreat-details {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 16px;
        }

        .next-retreat-price {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .next-retreat-price span {
            font-size: 0.9rem;
            color: var(--muted);
            font-weight: 400;
        }

        @media (max-width: 800px) {
            .retreat-content { grid-template-columns: 1fr; }
            .retreat-features { grid-template-columns: 1fr; }
        }

        /* ========================================
           AI-KONSULT SECTION
           ======================================== */
        .ai-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }

        .ai-service-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 28px;
            text-align: center;
            transition: all 0.3s;
        }

        .ai-service-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-4px);
        }

        .ai-service-icon {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .ai-service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 8px;
        }

        .ai-service-card p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 12px;
        }

        .ai-service-price {
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .ai-approach {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .ai-step {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.05);
            padding: 12px 20px;
            border-radius: 30px;
        }

        .ai-step-number {
            width: 28px;
            height: 28px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--white);
        }

        .ai-step span {
            color: var(--white);
            font-size: 0.9rem;
        }

        @media (max-width: 900px) {
            .ai-services-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 550px) {
            .ai-services-grid { grid-template-columns: 1fr; }
            .ai-approach { flex-direction: column; align-items: center; }
        }

        /* ========================================
           OM MIG SECTION
           ======================================== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 70px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            max-width: 340px;
            border-radius: 10px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 18px;
        }

        .about-content p { margin-bottom: 14px; color: var(--text); }

        .about-values {
            display: flex;
            gap: 24px;
            margin: 24px 0;
            flex-wrap: wrap;
        }

        .value-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .value-icon {
            width: 36px;
            height: 36px;
            background: var(--gold-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .value-item span {
            font-weight: 500;
            color: var(--dark);
        }

        .about-content .btn { margin-top: 12px; }

        @media (max-width: 800px) {
            .about-grid { grid-template-columns: 1fr; text-align: center; }
            .about-image { order: -1; }
            .about-image img { max-width: 260px; margin: 0 auto; }
            .about-values { justify-content: center; }
        }

        /* ========================================
           BOK SECTION
           ======================================== */
        .book-grid {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 60px;
            align-items: center;
        }

        .book-cover {
            border-radius: 8px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            width: 100%;
        }

        .book-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .book-info .subtitle {
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }

        .book-info p { color: var(--text); margin-bottom: 16px; line-height: 1.7; }

        .book-features {
            display: flex;
            gap: 24px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .book-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text);
        }

        .book-feature span { color: var(--gold); }

        .book-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

        @media (max-width: 700px) {
            .book-grid { grid-template-columns: 1fr; text-align: center; }
            .book-cover { max-width: 200px; margin: 0 auto; }
            .book-features { justify-content: center; }
            .book-buttons { justify-content: center; }
        }
        .project-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(0,0,0,0.04);
        }.project-status {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .status-launched {
            background: #d4edda;
            color: #155724;
        }

        .status-development {
            background: #fff3cd;
            color: #856404;
        }
        .project-card p {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.5;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            color: var(--gold);
            font-weight: 500;
            font-size: 0.9rem;
        }

        @media (max-width: 900px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 550px) { .projects-grid { grid-template-columns: 1fr; } }
        .testimonial-card {
            background: var(--white);
            border-radius: 12px;
            padding: 28px;
        }
        .testimonial-category {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
            margin-bottom: 12px;
        }

        .testimonial-card .stars {
            color: var(--gold);
            margin-bottom: 14px;
            font-size: 0.95rem;
        }

        .testimonial-card blockquote {
            font-style: italic;
            color: var(--text);
            margin-bottom: 18px;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .testimonial-card .author {
            font-weight: 600;
            color: var(--dark);
            font-size: 0.9rem;
        }

        .testimonial-card .role {
            color: var(--muted);
            font-size: 0.8rem;
        }

        @media (max-width: 800px) { .testimonials-grid { grid-template-columns: 1fr; } }
        .cta-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.9rem;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .cta-box p {
            opacity: 0.75;
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
