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

body {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg, #e8e4df 0%, #d9d5d0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    width: 100%;
    padding: 60px 20px;
}

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

.headline-box {
    margin-bottom: 40px;
    text-align: center;
}

h1 {
    font-weight: 400;
    color: #2a2a2a;
    letter-spacing: -0.02em;
    max-width: 1200px;
    margin: 0 auto;
}

/* Desktop/Laptop: large text with line breaks */
@media (min-width: 992px) {
    h1 {
        font-size: 4rem;
        line-height: 1.15;
    }
}

/* Mobile/Tablet: smaller text, no line breaks */
@media (max-width: 991px) {
    h1 {
        font-size: 1.75rem;
        line-height: 1.4;
    }
}

.tagline {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .headline-box {
        padding: 40px 25px;
        margin-bottom: 30px;
    }

    .tagline br {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }

    .headline-box {
        padding: 30px 20px;
    }
}
