body {
margin: 0;
padding: 0;
background: #faf6f7;
font-family: "Inter", sans-serif;
color: #111;
}

/* MAIN PAGE */
.contact-page {
max-width: 1250px;
margin: auto;
padding: 60px 30px 100px;
}

/* HERO */
.contact-hero {
text-align: center;
padding: 80px 20px;
margin-bottom: 70px;
}

.contact-tag {
display: inline-block;
background: #111;
color: #fff;
padding: 10px 18px;
border-radius: 999px;
font-size: 13px;
font-weight: 600;
letter-spacing: 1px;
margin-bottom: 30px;
}

.contact-hero h1 {
font-family: "Playfair Display", serif;
font-size: 72px;
line-height: 1.1;
margin-bottom: 30px;
max-width: 850px;
margin-inline: auto;
}

.contact-hero p {
max-width: 760px;
margin: auto;
font-size: 19px;
line-height: 1.9;
color: #555;
}

/* CONTACT CARDS */
.contact-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-bottom: 100px;
}

.contact-card {
background: #fff;
padding: 40px;
border-radius: 24px;
box-shadow: 0 10px 35px rgba(0,0,0,0.05);
transition: all .3s ease;
border-top: 5px solid #d84f74;
}

.contact-card:hover {
transform: translateY(-6px);
}

.contact-card span {
display: inline-block;
font-size: 13px;
font-weight: 700;
color: #d84f74;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 18px;
}

.contact-card h2 {
font-family: "Playfair Display", serif;
font-size: 28px;
line-height: 1.3;
margin-bottom: 25px;
}

.contact-card a {
text-decoration: none;
color: #111;
font-size: 17px;
font-weight: 600;
transition: .3s;
}

.contact-card a:hover {
color: #d84f74;
}

/* NEWSROOM SECTION */
.newsroom-section {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 50px;
align-items: start;
margin-bottom: 100px;
padding: 60px 0;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}

.newsroom-left h2 {
font-family: "Playfair Display", serif;
font-size: 48px;
line-height: 1.2;
}

.newsroom-right p {
font-size: 18px;
line-height: 2;
color: #555;
margin-bottom: 25px;
}

/* SOCIAL */
.social-section {
text-align: center;
}

.social-section h2 {
font-family: "Playfair Display", serif;
font-size: 44px;
margin-bottom: 40px;
}

.social-links {
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
}

.social-links a {
text-decoration: none;
color: #111;
border: 1px solid #ddd;
padding: 14px 26px;
border-radius: 999px;
transition: all .3s ease;
font-weight: 600;
}

.social-links a:hover {
background: #111;
color: #fff;
border-color: #111;
}

/* TABLET */
@media (max-width: 992px) {

.contact-cards {
    grid-template-columns: 1fr;
}

.newsroom-section {
    grid-template-columns: 1fr;
}

.contact-hero h1 {
    font-size: 52px;
}

.newsroom-left h2 {
    font-size: 38px;
}

}

/* MOBILE */
@media (max-width: 768px) {

.contact-page {
    padding: 30px 18px 70px;
}

.contact-hero {
    padding: 40px 0;
}

.contact-hero h1 {
    font-size: 38px;
}

.contact-hero p {
    font-size: 16px;
}

.contact-card {
    padding: 28px;
}

.contact-card h2 {
    font-size: 24px;
}

.newsroom-left h2 {
    font-size: 30px;
}

.newsroom-right p {
    font-size: 16px;
}

.social-section h2 {
    font-size: 30px;
}

}