:root {
    --ink: #111827;
    --navy: #0b1220;
    --navy-2: #162033;
    --gold: #d6a94f;
    --gold-dark: #ad8432;
    --smoke: #f5f2ec;
    --muted: #687385;
    --white: #ffffff;
    --red: #9f1d2b;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--smoke);
    line-height: 1.6;
}
.fw-black { font-weight: 900; letter-spacing: -0.045em; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 2000; background: var(--gold); color: var(--ink); padding: .75rem 1rem; border-radius: .5rem; }
.site-nav {
    background: rgba(11, 18, 32, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.navbar-brand {
    letter-spacing: -.02em;
    display: inline-flex;
    align-items: center;
    gap: clamp(.45rem, 1.2vw, .75rem);
    min-width: 0;
    max-width: min(74vw, 34rem);
}
.brand-logo {
    display: block;
    width: clamp(2.15rem, 4.4vw, 3.4rem);
    height: auto;
    max-height: clamp(2.15rem, 4.4vw, 3.4rem);
    max-width: clamp(2.15rem, 4.4vw, 3.4rem);
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
}
.brand-text {
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-gold {
    --bs-btn-color: #111827;
    --bs-btn-bg: var(--gold);
    --bs-btn-border-color: var(--gold);
    --bs-btn-hover-color: #111827;
    --bs-btn-hover-bg: #efc86e;
    --bs-btn-hover-border-color: #efc86e;
    font-weight: 800;
    box-shadow: 0 14px 35px rgba(214,169,79,.22);
}
.hero-section {
    position: relative;
    padding-top: 5.5rem;
    color: var(--white);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(7,11,19,.88), rgba(11,18,32,.70) 46%, rgba(11,18,32,.82)),
        url('../img/bg.jpg') center center / cover no-repeat fixed;
}
.hero-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
        radial-gradient(circle at 78% 18%, rgba(214,169,79,.18), transparent 30%);
    background-size: 44px 44px, 44px 44px, auto;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero-section:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(3, 8, 18, .18);
    backdrop-filter: saturate(.85) contrast(.95);
    pointer-events: none;
}
.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-weight: 900;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.eyebrow.dark { color: var(--red); }
.hero-lead { color: rgba(255,255,255,.82); max-width: 58rem; }
.hero-section .container { z-index: 2; }
.hero-panel {
    background: rgba(255,255,255,.94);
    color: var(--ink);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,.3);
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin: -.75rem 0 1.15rem;
}
.hero-logo {
    width: min(15rem, 78%);
    height: auto;
    object-fit: contain;
}
 .panel-topline { width: 4rem; height: .35rem; border-radius: 99rem; background: var(--red); margin-bottom: 1.5rem; }
.check-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.check-list li { position: relative; padding-left: 1.8rem; margin-bottom: .85rem; }
.check-list li:before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }
.text-gold { color: var(--gold) !important; }
.stat-card {
    height: 100%;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
}
.stat-card strong { display: block; color: #fff; }
.stat-card span { color: rgba(255,255,255,.7); font-size: .95rem; }
.section { padding: 6rem 0; }
.section-light { background: var(--smoke); }
.section-dark { background: var(--navy); color: #fff; }
.section-band { background: var(--red); color: #fff; padding: 4rem 0; }
.section-band p { color: rgba(255,255,255,.8); margin-bottom: 0; }
.section-intro { color: var(--muted); font-size: 1.08rem; }
.muted-light { color: rgba(255,255,255,.74); }
.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 20px 40px rgba(17,24,39,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(17,24,39,.11); }
.service-card h3 { font-size: 1.25rem; font-weight: 850; margin: 1rem 0 .75rem; }
.service-card p { color: var(--muted); margin: 0; }
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: .9rem;
    background: var(--navy);
    color: var(--gold);
    font-weight: 900;
}
.timeline { display: grid; gap: 1.25rem; }
.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 1.4rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.11);
}
.timeline-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-weight: 900;
}
.timeline-item h3 { font-size: 1.15rem; margin: 0 0 .35rem; font-weight: 850; }
.timeline-item p { margin: 0; color: rgba(255,255,255,.72); }
.facility-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; margin-top: 2rem; }
.facility-grid span {
    background: #fff;
    border: 1px solid rgba(17,24,39,.08);
    padding: .9rem 1rem;
    border-radius: .8rem;
    font-weight: 800;
}
.quote-card {
    position: relative;
    background: var(--navy);
    color: #fff;
    border-radius: 1.5rem;
    padding: 3rem;
    overflow: hidden;
}
.quote-card:after {
    content: "";
    position: absolute;
    right: -4rem;
    bottom: -4rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: rgba(214,169,79,.25);
}
.quote-card h3 { position: relative; z-index: 1; font-weight: 850; letter-spacing: -.025em; }
.quote-card p:not(.quote-mark) { position: relative; z-index: 1; color: rgba(255,255,255,.73); }
.quote-mark { color: var(--gold); font-size: 5rem; line-height: .6; margin: 0 0 1rem; }
.faq-accordion .accordion-item { border: 0; border-radius: 1rem; overflow: hidden; margin-bottom: 1rem; box-shadow: 0 14px 30px rgba(17,24,39,.07); }
.faq-accordion .accordion-button { font-weight: 850; padding: 1.25rem 1.5rem; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--ink); background: #fff5dd; box-shadow: none; }
.contact-section { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.contact-note { border-left: 4px solid var(--gold); padding-left: 1rem; margin-top: 2rem; color: rgba(255,255,255,.8); }
.contact-form {
    background: #fff;
    color: var(--ink);
    border-radius: 1.5rem;
    padding: 2rem;
}
.form-control, .form-select { border-radius: .8rem; padding: .85rem 1rem; border-color: #d6dde7; }
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 .25rem rgba(214,169,79,.2); }
.bot-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.site-footer { background: #070b13; color: rgba(255,255,255,.68); padding: 1.25rem 0; }
.site-footer a { color: var(--gold); text-decoration: none; }
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 4.75rem;
        background-attachment: scroll;
        background-position: center top;
    }
    .hero-section .min-vh-100 { min-height: auto !important; padding-top: 3rem !important; }
    .display-3 { font-size: calc(2.4rem + 2vw); }
}
@media (max-width: 575.98px) {
    .section { padding: 4rem 0; }
    .brand-logo { width: clamp(2rem, 10vw, 2.65rem); max-width: clamp(2rem, 10vw, 2.65rem); max-height: clamp(2rem, 10vw, 2.65rem); height: auto; }
    .brand-text { max-width: 12.25rem; white-space: normal; }
    .facility-grid { grid-template-columns: 1fr; }
    .quote-card, .contact-form, .hero-panel { padding: 1.5rem; }
    .navbar-brand { font-size: .98rem; }
}

.experience-section { border-top: 1px solid rgba(17,24,39,.08); }
.project-card {
    height: 100%;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.6rem;
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 18px 36px rgba(17,24,39,.055);
}
.project-card span {
    display: inline-block;
    color: var(--red);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .85rem;
}
.project-card h3 {
    font-size: 1.12rem;
    font-weight: 850;
    letter-spacing: -.02em;
    margin-bottom: .65rem;
}
.project-card p { color: var(--muted); margin: 0; }
.delivery-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    padding: 1.25rem;
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(17,24,39,.08);
}
.delivery-strip span {
    border: 1px solid rgba(159,29,43,.22);
    color: var(--red);
    background: #fff8f1;
    border-radius: 999rem;
    padding: .55rem .85rem;
    font-weight: 850;
    font-size: .9rem;
}
