/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #2c2c2c;
    background: #fff;
    line-height: 1.7;
}

a { color: #7b1535; text-decoration: none; }
a:hover { color: #5a0e25; text-decoration: underline; }

/* ===== NAVIGATION ===== */
header {
    background: #6b1227;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.header-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 68px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none !important;
}

.logo-wrap img {
    height: 48px;
    width: auto;
    display: block;
    border-radius: 3px;
}

.logo-text {
    color: #f5e6c8;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.3px;
}

.logo-text small {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #d4a0b0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    margin-left: auto;
}

nav a {
    color: #f0d0d8;
    padding: 7px 11px;
    border-radius: 4px;
    font-size: 0.84rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

nav a:hover { background: rgba(255,255,255,0.18); color: #fff; text-decoration: none; }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: #f5e6c8;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: auto;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/office.jpg');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.35);
}

.hero-content {
    position: relative;
    color: #fff;
    padding: 60px 20px;
    max-width: 720px;
}

.hero-content h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.1rem;
    color: #f0e0c0;
    margin-bottom: 32px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-cta {
    display: inline-block;
    background: #f5e6c8;
    color: #6b1227 !important;
    padding: 14px 38px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none !important;
}

.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

/* ===== SECTIONS ===== */
section { padding: 60px 20px; }
section.alt { background: #fdf6ee; }

.container { max-width: 1000px; margin: 0 auto; }

.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #6b1227;
    margin-bottom: 10px;
    padding-bottom: 12px;
    border-bottom: 3px solid #a03050;
    display: inline-block;
}

.section-intro {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.01rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.service-card {
    background: #fff;
    border: 1px solid #e8d0d8;
    border-radius: 8px;
    padding: 26px 22px;
    box-shadow: 0 2px 8px rgba(107,18,39,0.07);
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover { box-shadow: 0 6px 18px rgba(107,18,39,0.14); transform: translateY(-2px); }

.service-card--full { grid-column: 1 / -1; }

.service-card--full ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4px 30px;
    padding-left: 18px;
}

.service-card h3 {
    color: #6b1227;
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #a03050;
    border-radius: 2px;
    flex-shrink: 0;
}

.service-card p, .service-card ul { color: #555; font-size: 0.94rem; }
.service-card ul { padding-left: 18px; }
.service-card li { margin-bottom: 6px; }

/* ===== ACTIVITIES LIST ===== */
.activities-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 40px;
    margin-top: 20px;
}

.activities-cols li {
    color: #444;
    font-size: 0.94rem;
    padding: 6px 0;
    border-bottom: 1px solid #eed8dd;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.activities-cols li::before {
    content: '✓';
    color: #a03050;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== PROFESSIONALISM ===== */
.certs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 22px;
}

.cert-block {
    background: #fff;
    border-left: 4px solid #a03050;
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 1px 6px rgba(107,18,39,0.08);
}

.cert-block h4 {
    color: #6b1227;
    font-size: 0.93rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cert-block ul { padding-left: 16px; }
.cert-block li { color: #555; font-size: 0.88rem; margin-bottom: 5px; }

/* ===== RESTORATION ===== */
.restoration-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.restoration-list li {
    list-style: none;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: #444;
    font-size: 0.95rem;
}

.restoration-list li .num {
    background: #6b1227;
    color: #f5e6c8;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== REQUISITES ===== */
.req-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.94rem;
}

.req-table tr { border-bottom: 1px solid #eed8dd; }
.req-table tr:last-child { border-bottom: none; }
.req-table td { padding: 12px 16px; vertical-align: top; }
.req-table td:first-child { color: #6b1227; font-weight: 600; width: 240px; }
.req-table td:last-child { color: #444; }

/* ===== CONTACTS ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

.contact-info--wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.contact-item { display: flex; gap: 14px; align-items: flex-start; }

.contact-icon {
    width: 42px;
    height: 42px;
    background: #6b1227;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-item-text strong {
    display: block;
    color: #6b1227;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-item-text span, .contact-item-text a { color: #444; font-size: 0.97rem; }
.contact-item-text a:hover { color: #6b1227; }


/* ===== FOOTER ===== */
footer {
    background: #3a0a14;
    color: #c09090;
    text-align: center;
    padding: 26px 20px;
    font-size: 0.87rem;
}

footer strong { color: #f5e6c8; }
footer a { color: #c09090; }
footer a:hover { color: #f5e6c8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
    .header-inner { position: relative; }
    .nav-toggle { display: block; }
    nav {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: #6b1227;
        flex-direction: column;
        padding: 8px 0 14px;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-left: 0;
    }
    nav.open { display: flex; }
    nav a { padding: 12px 20px; border-radius: 0; }
}

@media (max-width: 700px) {
    .hero-content h1 { font-size: 1.7rem; }
    .activities-cols { grid-template-columns: 1fr; }
    .certs-grid { grid-template-columns: 1fr; }
    .contact-info--wide { grid-template-columns: 1fr; }
    .req-table td:first-child { width: auto; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .logo-text { font-size: 1rem; }
}
