/*
Theme Name: Vextrell Group Placeholder
Theme URI: https://vextrell.com
Author: Vextrell Group
Description: Temporary corporate placeholder theme for Vextrell Group.
Version: 1.0.0
Text Domain: vextrell-group-placeholder
*/

:root {
    --background: #f7f7f4;
    --surface: #ffffff;
    --surface-muted: #eeeeea;
    --text: #191919;
    --text-muted: #5c5c57;
    --border: #d8d8d1;
    --accent: #1f4d3b;
    --accent-hover: #173c2e;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family:
            Inter,
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

body.admin-bar .site-header {
    top: 32px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 900px;
    margin-bottom: 28px;
    font-size: clamp(3rem, 7vw, 4rem);
}

h2 {
    max-width: 780px;
    margin-bottom: 32px;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
    margin-bottom: 14px;
    font-size: 1.45rem;
}

p {
    color: var(--text-muted);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(216, 216, 209, 0.85);
    background: rgba(247, 247, 244, 0.94);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo {
    font-size: 1.05rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--accent);
}

.hero {
    display: flex;
    min-height: 760px;
    align-items: center;
    padding: 120px 0;
}

.hero__inner {
    padding-right: 8%;
}

.eyebrow {
    margin-bottom: 22px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero__description {
    max-width: 720px;
    margin-bottom: 38px;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 3px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.button:hover {
    background: var(--accent-hover);
}

.text-link {
    font-weight: 700;
    text-underline-offset: 5px;
}

.section {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.section--muted {
    background: var(--surface-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 56px;
}

.service-card {
    min-height: 260px;
    padding: 32px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.service-card p {
    margin-bottom: 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.split-layout p:last-child {
    margin-bottom: 0;
}

.section-copy {
    max-width: 780px;
    margin-bottom: 0;
    font-size: 1.15rem;
}

.contact-section {
    background: var(--text);
}

.contact-section h2,
.contact-section .eyebrow {
    color: #ffffff;
}

.contact-section p {
    color: #bdbdb7;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    align-items: end;
    gap: 80px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.contact-details a {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    text-underline-offset: 5px;
}

.site-footer {
    padding: 28px 0;
    background: var(--text);
    color: #bdbdb7;
    font-size: 0.85rem;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.site-footer p {
    margin: 0;
    color: inherit;
}

.simple-page {
    min-height: 70vh;
    padding: 100px 0;
}

@media (max-width: 800px) {
    body.admin-bar .site-header {
        top: 46px;
    }

    body {
        font-size: 17px;
    }

    .site-header__inner {
        min-height: 68px;
    }

    .site-nav {
        gap: 16px;
    }

    .site-nav a:not(.button) {
        display: none;
    }

    .site-nav .button {
        min-height: 42px;
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .hero {
        min-height: auto;
        padding: 100px 0;
    }

    .hero__inner {
        padding-right: 0;
    }

    .section {
        padding: 88px 0;
    }

    .services-grid,
    .split-layout,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .services-grid {
        margin-top: 40px;
    }

    .split-layout,
    .contact-panel {
        gap: 36px;
    }

    .service-card {
        min-height: auto;
    }

    .site-footer__inner {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    .hero {
        padding: 76px 0;
    }

    .section {
        padding: 72px 0;
    }

    .service-card {
        padding: 24px;
    }
}