/* Typography */
h1, h2, h3, h4, h5, h6 {
    /* Add word-break properties to handle long words */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

h1 {
    font-weight: 800; /* Extra Bold */
    font-size: 80px; /* Increased from 72px */
    line-height: 110%;
    letter-spacing: -2%;
    margin-bottom: 1.5rem;
}

h2 {
    font-weight: 800; /* Extra Bold */
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -1%;
    margin-bottom: 1.2rem;
}

h3 {
    font-weight: 700; /* Bold */
    font-size: 32px;
    line-height: 110%;
    letter-spacing: 0%;
    margin-bottom: 1rem;
}

h4 {
    font-weight: 400; /* Regular */
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    margin-bottom: 0.8rem;
}

.eyebrow {
    font-weight: 500; /* Medium */
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 4%;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

p, .body-copy {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 2%;
    margin-bottom: 1.5rem;
}

.caption {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 2%;
}

/* Responsive Typography */
@media (max-width: 1200px) {
    h1 {
        font-size: 64px;
    }
    
    h2 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 52px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .eyebrow {
        font-size: 16px;
    }
}
