:root {
    --bg: #070707;
    --bg-soft: #111111;
    --surface: #151515;
    --surface-2: #1d1d1d;
    --card: rgba(255, 255, 255, 0.05);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f4f1ea;
    --muted: #c6c0b3;
    --gold: #d8b25b;
    --gold-soft: #f0d892;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    --radius-lg: 28px;
    --radius-md: 20px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Manrope, Arial, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(216, 178, 91, 0.16), transparent 22%),
        linear-gradient(180deg, #070707 0%, #0d0d0d 100%);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3 {
    font-family: Outfit, Manrope, sans-serif;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

p {
    color: var(--muted);
}

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

.narrow {
    max-width: 850px;
}

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

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 14px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--gold-soft);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero {
    padding: 110px 0 90px;
}

.page-hero {
    padding: 92px 0 48px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 36px;
    align-items: center;
}

.hero-copy p,
.page-hero p {
    font-size: 1.08rem;
    max-width: 760px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    font-weight: 800;
}

.eyebrow.dark {
    color: var(--gold);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-actions.center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #b98d34, var(--gold-soft));
    color: #0b0b0b;
    box-shadow: 0 16px 34px rgba(216, 178, 91, 0.22);
}

.btn-secondary,
.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover,
.btn-ghost:hover {
    border-color: rgba(216, 178, 91, 0.5);
    color: var(--gold-soft);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.hero-point,
.hero-card,
.service-preview-card,
.content-card,
.mini-card,
.info-card,
.service-card-main,
.contact-form-card,
.cta-banner {
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: var(--shadow);
}

.hero-point {
    padding: 18px;
    border-radius: var(--radius-md);
}

.hero-point strong,
.hero-metric strong,
.showcase-item strong,
.contact-point strong {
    display: block;
    color: var(--white);
    margin-bottom: 6px;
}

.hero-point span,
.hero-metric p,
.showcase-item span,
.contact-point span {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.04);
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-label {
    color: var(--gold-soft);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}

.card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 18px rgba(216, 178, 91, 0.8);
}

.hero-metric {
    margin-bottom: 24px;
}

.hero-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hero-metric-grid div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metric-grid strong,
.feature-list li::marker {
    color: var(--gold-soft);
}

.hero-metric-grid span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding: 86px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.section-dark {
    background: linear-gradient(180deg, rgba(216, 178, 91, 0.06), rgba(255, 255, 255, 0));
}

.section-heading {
    text-align: center;
    margin-bottom: 34px;
}

.section-heading.left {
    text-align: left;
    margin-bottom: 28px;
}

.intro-panel {
    padding: 34px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
}

.service-preview-grid,
.three-col-grid,
.services-grid-main,
.contact-grid,
.about-grid {
    display: grid;
    gap: 22px;
}

.service-preview-grid,
.three-col-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-preview-card,
.mini-card,
.info-card {
    padding: 26px;
    border-radius: 24px;
}

.icon-box {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(216, 178, 91, 0.22), rgba(255, 255, 255, 0.12));
    color: var(--gold-soft);
    font-size: 1.25rem;
}

.split-showcase {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
    align-items: center;
}

.showcase-list {
    display: grid;
    gap: 18px;
}

.showcase-item {
    padding: 22px 24px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.text-link {
    display: inline-flex;
    margin-top: 20px;
    color: var(--gold-soft);
    font-weight: 700;
}

.text-link:hover {
    color: var(--white);
}

.cta-banner {
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(216, 178, 91, 0.16), transparent 28%),
        rgba(255, 255, 255, 0.04);
}

.about-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
}

.content-card {
    padding: 34px;
    border-radius: var(--radius-lg);
}

.stack-cards {
    display: grid;
    gap: 18px;
}

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

.service-card-main {
    padding: 28px;
    border-radius: var(--radius-lg);
}

.service-card-main h2 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.feature-list {
    margin-top: 18px;
    padding-left: 20px;
    color: var(--muted);
}

.feature-list li + li {
    margin-top: 10px;
}

.contact-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
}

.contact-points {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.contact-point {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 28px;
    border-radius: var(--radius-lg);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field span {
    color: var(--white);
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9d9689;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(216, 178, 91, 0.7);
    box-shadow: 0 0 0 4px rgba(216, 178, 91, 0.12);
}

.form-field.full {
    grid-column: 1 / -1;
}

.submit-btn {
    width: fit-content;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0 42px;
}

.footer-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-wrap strong {
    display: block;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--gold-soft);
}

@media (max-width: 1100px) {
    .nav-wrap {
        justify-content: center;
    }

    .brand,
    .site-nav {
        width: 100%;
        justify-content: center;
    }

    .hero-grid,
    .split-showcase,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-main,
    .service-preview-grid,
    .three-col-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-copy,
    .page-hero,
    .section-heading.left,
    .content-card,
    .showcase-copy {
        text-align: center;
    }

    .hero-copy p,
    .page-hero p,
    .showcase-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-card,
    .content-card {
        max-width: 860px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .site-header {
        position: static;
    }

    .hero {
        padding: 88px 0 72px;
    }

    .page-hero {
        padding: 74px 0 36px;
    }

    .section {
        padding: 74px 0;
    }

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

    .hero-grid,
    .split-showcase,
    .about-grid,
    .contact-grid,
    .services-grid-main,
    .service-preview-grid,
    .three-col-grid {
        gap: 18px;
    }

    .footer-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .nav-wrap {
        padding: 14px 0;
    }

    .brand {
        gap: 10px;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .brand span {
        font-size: 0.9rem;
        letter-spacing: 0.04em;
    }

    .site-nav {
        gap: 14px 18px;
        width: 100%;
        justify-content: center;
    }

    .site-nav a {
        font-size: 0.96rem;
    }

    .hero,
    .page-hero,
    .section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .service-preview-grid,
    .three-col-grid,
    .services-grid-main,
    .hero-points,
    .hero-metric-grid,
    .contact-form-card {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .submit-btn {
        width: 100%;
    }

    .hero-card-top {
        gap: 12px;
    }

    .intro-panel,
    .hero-card,
    .content-card,
    .mini-card,
    .service-preview-card,
    .info-card,
    .service-card-main,
    .contact-form-card,
    .cta-banner {
        padding: 22px;
        border-radius: 22px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 22px));
    }

    h1 {
        font-size: clamp(2.35rem, 12vw, 3.35rem);
    }

    h2 {
        font-size: clamp(1.7rem, 8vw, 2.35rem);
    }

    .site-header {
        border-bottom-color: rgba(255, 255, 255, 0.04);
    }

    .nav-wrap {
        gap: 14px;
        padding: 12px 0;
    }

    .brand {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand span {
        font-size: 0.82rem;
    }

    .site-nav {
        gap: 10px 14px;
    }

    .site-nav a::after {
        bottom: -5px;
    }

    .hero {
        padding: 68px 0 58px;
    }

    .page-hero {
        padding: 60px 0 26px;
    }

    .section {
        padding: 56px 0;
    }

    .hero-copy p,
    .page-hero p {
        font-size: 1rem;
    }

    .eyebrow {
        font-size: 0.74rem;
        letter-spacing: 0.14em;
    }

    .hero-point,
    .hero-card,
    .service-preview-card,
    .content-card,
    .mini-card,
    .info-card,
    .service-card-main,
    .contact-form-card,
    .cta-banner,
    .intro-panel {
        padding: 18px;
        border-radius: 18px;
    }

    .service-card-main h2 {
        font-size: 1.45rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 14px;
        border-radius: 14px;
    }

    .footer-links {
        gap: 12px;
    }
}
