:root {
    /* Color Palette - Luxury Magazine */
    --primary-color: #0F172A;
    /* Deep Navy - Authority */
    --accent-color: #D4AF37;
    /* Metallic Gold - Luxury */
    --accent-light: #F4E8C1;
    /* Soft Gold/Champagne */
    --text-color: #0a0a0a;
    /* Practically Black */
    --text-light: #555555;
    /* Dark Grey for body text */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    /* Very subtle grey for separation */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    /* Increased for "Breath" */
    --spacing-md: 3rem;
    /* Increased */
    --spacing-lg: 6rem;
    /* Magazine spacing */
    --spacing-xl: 10rem;
    /* Hero spacing */

    --border-radius: 4px;
    /* Sharper, more elegant corners */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.8;
    /* Readers comfort */
    font-weight: 300;
    overflow-x: hidden;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}

h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    width: 88%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    /* Boxy luxury */
}

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

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.section {
    padding: var(--spacing-lg) 0;
}

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

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* SEKCJA 1: HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    /* Fallback */
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
}

/* Overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-left: 5%;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.hero h2 {
    font-family: var(--font-heading);
    /* Switch to Playfair for beautiful true italics */
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    border-left: 2px solid var(--accent-color);
    padding-left: var(--spacing-sm);
    font-style: italic;
}

/* SEKCJA 2: SOCIAL PROOF */
.social-proof {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-md) 0;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.number-item h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.number-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin: 0;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Softer border */
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.logos-grid img {
    height: 120px;
    /* Increased 4x per user request */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    object-fit: contain;
}

.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* SEKCJA 3: FILOZOFIA */
.philosophy {
    background-color: var(--white);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-box {
    margin: var(--spacing-md) 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
}

/* SEKCJA 4: OFERTA */
.offer {
    background-color: var(--off-white);
}

.offer-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border: 1px solid #eee;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
}

.offer-list {
    list-style: none;
    margin: var(--spacing-md) auto;
    text-align: left;
    max-width: 500px;
}

.offer-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.offer-list li::before {
    content: '★';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: var(--spacing-md);
    display: block;
}

/* SEKCJA 5: O MNIE */
.about {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0;
    /* Split layout */
    display: flex;
    flex-direction: column;
}

.about-image {
    height: 400px;
    background-image: url('assets/about.png');
    background-size: cover;
    background-position: top center;
}

.about-text {
    padding: var(--spacing-lg) var(--spacing-md);
}

.about-text h2 {
    color: var(--white);
    border-bottom: 1px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 1rem;
}

/* FOOTER */
footer {
    background-color: var(--white);
    padding: var(--spacing-md) 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid #eee;
}

.footer-links a {
    margin: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .hero {
        background-position: center right;
        /* Offset image so text is on white space */
    }

    .hero::before {
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
        width: 60%;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .numbers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about {
        flex-direction: row;
        align-items: center;
    }

    .about-image,
    .about-text {
        flex: 1;
        height: auto;
        min-height: 600px;
    }
}