:root {
    --bg: #f4f1ea;
    --surface: rgba(255, 255, 255, 0.7);
    --surface-strong: #ffffff;
    --text: #14213d;
    --muted: #5d6b82;
    --line: rgba(20, 33, 61, 0.12);
    --accent: #ff6b35;
    --accent-deep: #c7461c;
    --accent-soft: #ffe2d7;
    --shadow: 0 24px 60px rgba(20, 33, 61, 0.12);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 107, 53, 0.18), transparent 28%),
        linear-gradient(180deg, #fff9f3 0%, var(--bg) 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-shell {
    min-height: 100vh;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(255, 249, 243, 0.82);
    border-bottom: 1px solid rgba(20, 33, 61, 0.08);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--text), #243b68);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-text strong {
    font-size: 1rem;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.82rem;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(20, 33, 61, 0.08);
    border-radius: 999px;
}

.site-nav a {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
    transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
    background: #fff;
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta,
.button-primary {
    padding: 0.9rem 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 14px 30px rgba(255, 107, 53, 0.24);
}

.button-secondary {
    padding: 0.9rem 1.4rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.hero-section,
.page-hero {
    padding: 5rem 0 3rem;
}

.hero-grid,
.split-layout,
.contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 1rem;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    max-width: 12ch;
    margin-top: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.hero-text {
    max-width: 58ch;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats article,
.hero-card,
.info-card,
.service-card,
.bullet-panel,
.contact-form {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.hero-stats article {
    padding: 1.2rem;
}

.hero-stats strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.35rem;
}

.hero-card,
.bullet-panel,
.contact-form {
    padding: 2rem;
}

.card-label {
    margin-bottom: 0.8rem;
    font-weight: 800;
    color: var(--accent-deep);
}

.feature-list,
.footer-links {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li,
.footer-links li {
    margin-bottom: 0.8rem;
    color: var(--muted);
}

.section {
    padding: 2rem 0 4rem;
}

.section-accent {
    padding-bottom: 5rem;
}

.section-heading,
.narrow {
    max-width: 760px;
}

.cards-grid,
.footer-grid,
.service-stack {
    display: grid;
    gap: 1.5rem;
}

.cards-grid,
.footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.service-card {
    padding: 1.8rem;
}

.service-stack {
    grid-template-columns: 1fr;
}

.site-footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(20, 33, 61, 0.08);
    background: rgba(20, 33, 61, 0.96);
}

.site-footer h3,
.site-footer p,
.site-footer a,
.footer-brand .brand-text strong,
.footer-brand .brand-text small {
    color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
    margin-top: 1rem;
    max-width: 34ch;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-panel {
    padding: 2rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.55rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    font: inherit;
    color: var(--text);
    background: #fff;
}

.contact-form button {
    border: 0;
    cursor: pointer;
}

@media (max-width: 980px) {
    .header-inner,
    .hero-grid,
    .split-layout,
    .contact-grid,
    .cards-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        display: grid;
        justify-content: stretch;
    }

    .site-nav {
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 24px;
    }

    .header-cta {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-section,
    .page-hero {
        padding-top: 3.5rem;
    }

    h1 {
        max-width: none;
    }

    .hero-card,
    .bullet-panel,
    .info-card,
    .service-card,
    .contact-form,
    .contact-panel {
        padding: 1.4rem;
    }
}
