/* ==========================================
   LIZ LARSSON CONSULTING - MODERN DESIGN
   Clean, Minimalist, Elegant Aesthetic
   ========================================== */

/* Root Variables */
:root {
    --primary-dark: #1a1a1a;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --text-lighter: #999999;
    --accent: #000000;
    --border-color: #e5e5e5;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --nav-blue: #1e3a5f;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-weight: 400;
    letter-spacing: 0.3px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--text-lighter);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    background-color: var(--bg-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--nav-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--nav-blue);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background-color: var(--bg-white);
    padding: 6rem 0 8rem;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 900px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--text-dark);
}

.btn-primary {
    background-color: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

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

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    padding: 6rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.about-wrapper {
    max-width: 900px;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.credentials-list {
    list-style: none;
    margin-top: 1.5rem;
}

.credentials-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.credentials-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-dark);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    padding: 6rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-item:hover {
    border-color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.service-number {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-color: var(--text-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-details {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pillars-integration {
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.pillars-integration h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pillars-integration p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Engagement Models Section */
.engagement-models {
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.engagement-models h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.engagement-models > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
}

.engagement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.engagement-option {
    background-color: var(--bg-white);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.engagement-option:hover {
    border-color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.engagement-option h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.engagement-option p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ==========================================
   EXPERTISE SECTION
   ========================================== */

.expertise {
    padding: 6rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.expertise-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.expertise-column ul {
    list-style: none;
}

.expertise-column li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.expertise-column li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-dark);
}

/* ==========================================
   HIGHLIGHTS SECTION
   ========================================== */

.highlights {
    padding: 6rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.highlight-item {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.highlight-item:hover {
    border-color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.highlight-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.highlight-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    padding: 6rem 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-form-section {
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-info-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-info-section > p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-detail .label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-lighter);
}

.contact-detail a {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--text-lighter);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: var(--bg-white);
    color: var(--text-lighter);
    text-align: center;
    padding: 2rem 0;
    margin-top: 0;
    border-top: 1px solid var(--border-color);
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-lighter);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 20px;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-photo {
        max-width: 300px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-list,
    .highlights-list,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 0 5rem;
    }

    .about,
    .services,
    .expertise,
    .highlights,
    .contact {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .logo-name {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .service-item,
    .highlight-item {
        padding: 1.5rem;
    }

    .about,
    .services,
    .expertise,
    .highlights,
    .contact {
        padding: 2.5rem 0;
    }
}
