:root {
    --bg: #18191c;
    --panel: rgba(31, 32, 36, .82);
    --line: rgba(207, 176, 111, .28);
    --gold: #cfb06f;
    --gold-soft: #e6ca88;
    --text: #f6f7f9;
    --muted: #aeb4bd;
    --shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(rgba(18, 18, 19, .80), rgba(18, 18, 19, .92)),
        url("brand/bg.JPG") center top / cover fixed,
        var(--bg);
    color: var(--text);
    font-family: "Tektur", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 15%, rgba(207, 176, 111, .16), transparent 30%),
        linear-gradient(90deg, rgba(0, 0, 0, .48), transparent 45%, rgba(0, 0, 0, .38));
    animation: ambientGlow 12s ease-in-out infinite alternate;
    pointer-events: none;
}

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

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px clamp(16px, 4vw, 46px);
    border-bottom: 1px solid rgba(207, 176, 111, .18);
    background: rgba(18, 19, 22, .84);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-soft);
    font-weight: 900;
}

.brand img {
    width: 34px;
    height: 24px;
    object-fit: contain;
    animation: markPulse 3.8s ease-in-out infinite;
}

.brand span {
    white-space: nowrap;
    font-size: .78rem;
}

nav {
    display: flex;
    gap: clamp(10px, 2vw, 24px);
    color: #d8dbe0;
    font-size: .72rem;
    font-weight: 800;
}

nav a {
    position: relative;
    padding: 7px 0;
}

nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s ease;
}

nav a:hover {
    color: var(--gold-soft);
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero {
    min-height: 100vh;
    display: grid;
    align-items: center;
    gap: 20px;
    padding: 110px clamp(16px, 5vw, 72px) 42px;
}

.hero-panel,
.contact-card,
.feature-panel,
.service-card,
.timeline-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
        var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    width: min(820px, 100%);
    padding: clamp(22px, 5vw, 54px);
}

.hero-panel::after,
.contact-card::after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -60%;
    width: 44%;
    background: linear-gradient(90deg, transparent, rgba(207, 176, 111, .18), transparent);
    transform: rotate(18deg);
    animation: shineSweep 5.5s ease-in-out infinite;
    pointer-events: none;
}

.hero-logo {
    display: block;
    width: min(320px, 74vw);
    height: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .35));
    animation: logoFloat 4.2s ease-in-out infinite;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold-soft);
    font-size: .72rem;
    font-weight: 900;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
    max-width: 820px;
    margin-bottom: 14px;
    font-size: clamp(2rem, 6.2vw, 5.2rem);
    line-height: .98;
}

h2 {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 3.5vw, 3.2rem);
    line-height: 1.05;
}

h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

p {
    color: var(--muted);
    line-height: 1.7;
    text-transform: none;
}

.hero-copy {
    max-width: 680px;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.button {
    display: inline-grid;
    place-items: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 900;
    transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

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

.button.primary {
    border-color: transparent;
    background: linear-gradient(135deg, var(--gold), #b99755);
    color: #18191c;
    box-shadow: 0 14px 34px rgba(207, 176, 111, .25);
}

.button.ghost {
    color: var(--gold-soft);
    background: rgba(255, 255, 255, .04);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-stats span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(24, 25, 28, .76);
    color: #d8dbe0;
    font-size: .72rem;
    font-weight: 800;
    animation: statFloat 4.5s ease-in-out infinite;
}

.hero-stats strong {
    color: var(--gold-soft);
}

.hero-stats .counter-stat {
    border-color: rgba(207, 176, 111, .52);
    background:
        linear-gradient(135deg, rgba(207, 176, 111, .18), rgba(255, 255, 255, .04)),
        rgba(24, 25, 28, .82);
    box-shadow: 0 16px 36px rgba(207, 176, 111, .14);
}

.count-up {
    min-width: 2ch;
    font-size: 1rem;
}

.section {
    padding: clamp(44px, 8vw, 110px) clamp(16px, 5vw, 72px);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 22px;
    align-items: stretch;
}

.section-copy {
    align-self: center;
    max-width: 760px;
}

.feature-panel {
    display: grid;
    gap: 14px;
    padding: clamp(18px, 4vw, 32px);
}

.feature-panel > div {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.feature-panel > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.number {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-soft);
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    font-weight: 900;
}

.section-head {
    max-width: 760px;
    margin-bottom: 22px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    min-height: 250px;
    padding: 20px;
    animation: cardBreath 7s ease-in-out infinite;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    border-color: rgba(207, 176, 111, .65);
    transform: translateY(-6px);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .48);
}

.service-card span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: rgba(207, 176, 111, .13);
    color: var(--gold-soft);
    font-weight: 900;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.timeline-item {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    padding: 20px;
    animation: cardBreath 8s ease-in-out infinite;
}

.timeline-item::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(207, 176, 111, .22);
    transform: rotate(45deg);
}

.timeline-item strong {
    display: block;
    margin-bottom: 32px;
    color: var(--gold-soft);
    font-size: 1.4rem;
}

.contact-card {
    position: relative;
    overflow: hidden;
    max-width: 820px;
    padding: clamp(22px, 5vw, 44px);
}

.contact-lines {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.contact-lines span {
    display: block;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    color: #d8dbe0;
    font-size: .78rem;
}

.contact-lines a {
    color: var(--gold-soft);
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px clamp(16px, 5vw, 72px);
    border-top: 1px solid rgba(207, 176, 111, .18);
    background: rgba(18, 19, 22, .82);
    color: var(--gold-soft);
}

footer small { color: var(--muted); }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: revealUp .78s cubic-bezier(.2, .8, .2, 1) forwards;
}

.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ambientGlow {
    from {
        opacity: .72;
        transform: translate3d(-1%, -1%, 0) scale(1);
    }
    to {
        opacity: 1;
        transform: translate3d(1%, 1%, 0) scale(1.03);
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes markPulse {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(207, 176, 111, 0)); }
    50% { filter: drop-shadow(0 0 12px rgba(207, 176, 111, .45)); }
}

@keyframes shineSweep {
    0%, 42% {
        left: -70%;
        opacity: 0;
    }
    52% { opacity: 1; }
    72%, 100% {
        left: 130%;
        opacity: 0;
    }
}

@keyframes statFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes cardBreath {
    0%, 100% { box-shadow: var(--shadow); }
    50% { box-shadow: 0 30px 90px rgba(207, 176, 111, .12), var(--shadow); }
}

@media (max-width: 980px) {
    .site-header {
        display: none !important;
    }

    .hero {
        padding-top: 34px;
    }

    .service-grid,
    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .site-header {
        display: none;
    }

    .hero {
        padding-top: 34px;
    }

    .hero-panel {
        padding: 18px;
    }

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

    .button {
        width: 100%;
    }

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

    .service-card,
    .timeline-item {
        min-height: auto;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media screen and (max-width: 980px), screen and (hover: none) and (pointer: coarse) {
    .site-header {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        border: 0 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}
