/* =========================
   Solveta
   Structured architectural identity
   Cool stone / slate palette
   ========================= */

body.solveta {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: #2b3138;
    background: linear-gradient(180deg, #e9edf1 0%, #dde3e8 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

body.solveta * {
    box-sizing: border-box;
}

body.solveta a {
    text-decoration: none;
    transition: all 0.25s ease;
}

body.solveta img {
    max-width: 100%;
    display: block;
}

body.solveta .container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

/* =========================
   Header
   ========================= */

body.solveta .solveta-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(233, 237, 241, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 88, 103, 0.10);
    box-shadow: 0 8px 24px rgba(49, 57, 66, 0.05);
}

body.solveta .solveta-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

body.solveta .solveta-logo-link {
    display: inline-flex;
    align-items: center;
}

body.solveta .solveta-logo {
    height: 78px;
    width: auto;
    object-fit: contain;
}

body.solveta .solveta-nav {
    display: flex;
    gap: 1.15rem;
    flex-wrap: wrap;
}

body.solveta .solveta-nav a {
    color: #4f5a66;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.solveta .solveta-nav a:hover {
    color: #8d6f55;
}

/* =========================
   Shared text
   ========================= */

body.solveta .section-label,
body.solveta .panel-label,
body.solveta .principle-index {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8d6f55;
}

/* =========================
   Top showcase image
   ========================= */

body.solveta .solveta-showcase {
    padding: 2rem 0 1.2rem;
}

body.solveta .showcase-frame {
    margin: 0;
    padding: 1rem;
    background: #f7f9fb;
    border: 1px solid rgba(79, 90, 102, 0.10);
    box-shadow: 0 18px 36px rgba(49, 57, 66, 0.06);
}

body.solveta .showcase-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   Hero
   ========================= */

body.solveta .solveta-hero {
    padding: 3.2rem 0 4.5rem;
    position: relative;
}

body.solveta .solveta-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(to right, rgba(255,255,255,0.12), transparent 40%),
            linear-gradient(to bottom, transparent 0%, rgba(79, 90, 102, 0.04) 100%);
    pointer-events: none;
}

body.solveta .solveta-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

body.solveta .hero-copy {
    padding: 2.4rem;
    background: linear-gradient(180deg, #f7f9fb, #eef2f5);
    border: 1px solid rgba(79, 90, 102, 0.10);
    box-shadow: 0 24px 50px rgba(49, 57, 66, 0.08);
    position: relative;
}

body.solveta .hero-copy::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(141, 111, 85, 0.10);
    pointer-events: none;
}

body.solveta .hero-copy .section-label {
    margin-bottom: 1rem;
}

body.solveta .hero-copy h1 {
    margin: 0 0 1rem;
    font-family: "Cormorant Garamond", "Georgia", serif;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #293038;
}

body.solveta .hero-copy p {
    margin: 0;
    max-width: 620px;
    color: #5d6772;
    font-size: 1.05rem;
}

body.solveta .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.7rem;
}

body.solveta .btn-primary,
body.solveta .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.solveta .btn-primary {
    background: #55616f;
    color: #f6f8fa;
    box-shadow: 0 14px 30px rgba(58, 69, 80, 0.18);
}

body.solveta .btn-primary:hover {
    transform: translateY(-2px);
    background: #475260;
}

body.solveta .btn-secondary {
    background: #f8fafb;
    color: #7f6753;
    border: 1px solid rgba(127, 103, 83, 0.18);
}

body.solveta .btn-secondary:hover {
    transform: translateY(-2px);
    color: #6c5543;
}

body.solveta .hero-aside {
    display: grid;
    gap: 1rem;
}

body.solveta .contact-panel,
body.solveta .hero-note {
    background: #f4f7f9;
    border: 1px solid rgba(79, 90, 102, 0.10);
    box-shadow: 0 16px 34px rgba(49, 57, 66, 0.05);
}

body.solveta .contact-panel {
    display: grid;
    gap: 0.8rem;
    padding: 1.5rem;
}

body.solveta .contact-panel .panel-label {
    margin-bottom: 0.3rem;
}

body.solveta .contact-panel a {
    display: block;
    padding: 0.95rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(79, 90, 102, 0.08);
    color: #43505c;
    font-weight: 700;
}

body.solveta .contact-panel a:hover {
    transform: translateX(4px);
    color: #8d6f55;
}

body.solveta .hero-note {
    padding: 1.35rem;
}

body.solveta .hero-note strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #3d4750;
    font-size: 0.98rem;
}

body.solveta .hero-note p {
    margin: 0;
    color: #69727b;
    font-size: 0.95rem;
}

/* =========================
   Shared sections
   ========================= */

body.solveta .solveta-about,
body.solveta .solveta-principles,
body.solveta .solveta-services,
body.solveta .solveta-contact {
    padding: 5rem 0;
}

body.solveta .solveta-grid-two {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2rem;
    align-items: start;
}

body.solveta .section-intro h2,
body.solveta .services-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", "Georgia", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #2d343b;
}

body.solveta .section-copy,
body.solveta .contact-copy p {
    color: #5f6974;
    font-size: 1rem;
}

body.solveta .section-copy p {
    margin: 0 0 1rem;
}

body.solveta .section-copy p:last-child {
    margin-bottom: 0;
}

/* =========================
   Principles
   ========================= */

body.solveta .principles-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

body.solveta .principle-card {
    padding: 1.6rem;
    background: #f3f6f8;
    border-top: 4px solid #5c6773;
    box-shadow: 0 14px 30px rgba(49, 57, 66, 0.05);
}

body.solveta .principle-index {
    margin-bottom: 0.7rem;
}

body.solveta .principle-card h3 {
    margin: 0 0 0.75rem;
    color: #33404b;
    font-size: 1.2rem;
    font-weight: 700;
}

body.solveta .principle-card p {
    margin: 0;
    color: #68717b;
}

/* =========================
   Services
   ========================= */

body.solveta .services-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

body.solveta .services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

body.solveta .service-card {
    padding: 1.5rem;
    background: linear-gradient(180deg, #f6f8fa, #edf1f4);
    border-left: 4px solid #8d6f55;
    box-shadow: 0 12px 26px rgba(49, 57, 66, 0.05);
}

body.solveta .service-card h3 {
    margin: 0 0 0.7rem;
    color: #313942;
    font-size: 1.16rem;
    font-weight: 700;
}

body.solveta .service-card p {
    margin: 0;
    color: #68727c;
}

/* =========================
   Contact
   ========================= */

body.solveta .contact-links {
    display: grid;
    gap: 0.9rem;
}

body.solveta .contact-links a {
    display: block;
    padding: 1rem 1.1rem;
    background: #f5f8fa;
    border: 1px solid rgba(79, 90, 102, 0.10);
    color: #44505a;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(49, 57, 66, 0.04);
}

body.solveta .contact-links a:hover {
    transform: translateX(4px);
    color: #8d6f55;
}

/* =========================
   Footer
   ========================= */

body.solveta .solveta-footer {
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(79, 90, 102, 0.10);
    background: #e2e7eb;
}

body.solveta .solveta-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

body.solveta .solveta-footer p {
    margin: 0;
    color: #707983;
    font-size: 0.92rem;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1024px) {
    body.solveta .solveta-hero-inner,
    body.solveta .solveta-grid-two,
    body.solveta .principles-layout {
        grid-template-columns: 1fr;
    }

    body.solveta .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body.solveta .solveta-header-inner,
    body.solveta .solveta-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    body.solveta .solveta-nav {
        width: 100%;
        gap: 0.8rem;
    }

    body.solveta .hero-copy,
    body.solveta .contact-panel,
    body.solveta .hero-note,
    body.solveta .showcase-frame,
    body.solveta .principle-card,
    body.solveta .service-card {
        padding: 1.2rem;
    }

    body.solveta .solveta-logo {
        height: 62px;
    }

    body.solveta .hero-copy h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}