/* --- FONTS & BASE --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&display=swap');

:root {
    --bg-body: #ffffff;
    --text-primary: #111111;
    --text-secondary: #666666;
    --line-color: #E0E0E0;
    --font-main: 'Manrope', sans-serif;
}

body {
    margin: 0;
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* --- CONTAINER & HEADER (ARCH STYLE) --- */
.arch-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

.arch-header {
    margin-bottom: 80px;
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 40px;
}

.arch-title {
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}

/* --- GRID SYSTEM --- */
.arch-grid { border-top: 1px solid var(--line-color); border-top: none; }
.arch-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    border-bottom: 1px solid var(--line-color);
}

.arch-label {
    padding: 60px 40px 60px 0;
    border-right: 1px solid var(--line-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.arch-content { padding: 60px 0 60px 60px; }

.arch-content h2 {
    font-size: 20px; font-weight: 500; margin: 0 0 25px 0;
    text-transform: uppercase; letter-spacing: 0.05em;
}

.arch-content p {
    font-size: 15px; font-weight: 300; color: var(--text-secondary);
    margin-bottom: 30px; max-width: 500px; line-height: 1.7;
}

/* --- SPECIFIC CONTACT STYLES --- */

/* 1. Status Text (small top text) */
.status-text {
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px !important;
    color: #888 !important;
}

/* 2. Huge Phone Link */
.contact-huge-link {
    display: block;
    font-size: 42px; /* Великий розмір */
    font-weight: 300; /* Тонкий шрифт */
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 20px;
    transition: opacity 0.3s;
    letter-spacing: -0.02em;
    line-height: 1;
}

.contact-huge-link:hover {
    opacity: 0.6;
}

.sub-text {
    font-size: 14px !important;
    color: #999 !important;
    max-width: 400px !important;
}

/* 3. Social Buttons */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    padding: 20px 25px;
    border: 1px solid var(--text-primary);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    background: #fff;
    margin-top: 10px;
}

.social-btn span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0; /* Забороняє стискати іконку */
    overflow: visible; /* Дозволяє виступаючим частинам (кінчикам) бути видимими */
    margin-right: 2px; /* Візуальна компенсація для літачка */
}

.sb-arrow {
    font-size: 18px;
    transition: transform 0.3s;
}

/* Hover Effects */
.social-btn:hover {
    background: var(--text-primary);
    color: #fff;
}
.social-btn:hover .sb-arrow {
    transform: translateX(5px); /* Стрілка рухається вправо */
}

/* --- MOBILE ADAPTIVE --- */
@media (max-width: 900px) {
    .arch-page { padding: 60px 20px; }
    .arch-header { margin-bottom: 40px; padding-bottom: 30px; }
    .arch-title { font-size: 30px; }

    .arch-row { 
        display: block; 
        border-bottom: 1px solid var(--line-color);
        padding-bottom: 40px; margin-bottom: 40px;
    }
    .arch-row:last-child { border-bottom: none; margin-bottom: 0; }
    
    .arch-label {
        width: 100%; border-right: none; padding: 0; margin-bottom: 20px;
        font-size: 11px; color: #999; display: block;
    }
    
    .arch-content { padding: 0; width: 100%; }

    /* Мобільний телефонний номер */
    .contact-huge-link { font-size: 28px; }
    
    /* Кнопки на всю ширину */
    .social-btn { max-width: 100%; }
}