:root {
    --peak-navy: #091a2e;
    --peak-steel: #1f3552;
    --peak-copper: #d77a2f;
    --peak-amber: #f3b24d;
    --peak-mist: #d9e6f2;
}

* { box-sizing: border-box; }

body {
    background:
        radial-gradient(circle at top left, rgba(243, 178, 77, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(31, 53, 82, 0.09), transparent 30%),
        linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}

.site-shell {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(90deg, rgba(9, 26, 46, 0.95), rgba(31, 53, 82, 0.92));
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(9, 26, 46, 0.12);
}

.site-shell.compact {
    position: relative;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: white;
    text-decoration: none;
}

.brand-emblem {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--peak-copper), var(--peak-amber));
    color: var(--peak-navy);
}

.brand-wording {
    display: grid;
}

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

.brand-wording small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
}

.menu-button {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-weight: 700;
}

.nav-pill {
    border-radius: 999px;
    padding: 0.65rem 1rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.nav-pill:hover,
.nav-pill.active {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.mobile-nav-link {
    display: block;
    padding: 0.8rem 0.3rem;
    color: var(--peak-steel);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(31, 53, 82, 0.08);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 42rem;
}

.hero-slide {
    display: none;
    min-height: 42rem;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    display: block;
}

.hero-content {
    width: min(100%, 84rem);
    margin: 0 auto;
    padding: 8rem 1.25rem 7rem;
    color: white;
}

.hero-content h1,
.hero-content h2 {
    margin: 0;
    max-width: 62rem;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    line-height: 0.98;
    font-weight: 900;
}

.hero-content p:not(.hero-kicker) {
    margin-top: 1.5rem;
    max-width: 46rem;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-kicker {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.section-kicker {
    background: rgba(243, 178, 77, 0.16);
    color: var(--peak-copper);
}

.section-kicker.light {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
}

.section-kicker.warm {
    background: rgba(243, 178, 77, 0.18);
    color: #ffd28b;
}

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

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    text-decoration: none;
    font-weight: 800;
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--peak-copper), var(--peak-amber));
    color: var(--peak-navy);
}

.hero-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
}

.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.55rem;
    z-index: 3;
}

.slider-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
}

.slider-dot.active {
    background: white;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
    font-weight: 900;
    color: var(--peak-navy);
}

.section-title.light {
    color: white;
}

.section-copy {
    max-width: 52rem;
    color: #5b687d;
    line-height: 1.85;
    font-size: 1.02rem;
}

.glass-panel,
.feature-panel,
.page-hero-card {
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(31, 53, 82, 0.1);
    box-shadow: 0 18px 44px rgba(14, 27, 43, 0.08);
}

.page-hero-card,
.feature-panel {
    padding: 2rem;
}

.glass-panel {
    padding: 1.5rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.metric-card {
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(232, 239, 247, 0.88), rgba(255, 255, 255, 0.96));
    padding: 1.2rem;
}

.metric-card span {
    display: block;
    color: #6b7891;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.metric-card strong {
    display: block;
    margin: 0.35rem 0;
    font-size: 1.5rem;
    color: var(--peak-navy);
}

.metric-card p {
    margin: 0;
    color: #5b687d;
    line-height: 1.6;
    font-size: 0.92rem;
}

.band-shell {
    background:
        radial-gradient(circle at top right, rgba(243, 178, 77, 0.2), transparent 28%),
        linear-gradient(135deg, var(--peak-navy), var(--peak-steel));
}

.band-card {
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.35rem;
}

.band-card h3,
.feature-panel h3 {
    margin: 0;
    font-size: 1.35rem;
    color: var(--peak-navy);
    font-weight: 800;
}

.band-card p,
.feature-panel p,
.market-tile p,
.service-tile p {
    margin-top: 0.85rem;
    color: #5b687d;
    line-height: 1.75;
}

.feature-panel.dark {
    background: linear-gradient(145deg, var(--peak-navy), #122743);
    color: white;
    border: none;
}

.feature-panel.dark h3,
.feature-panel.dark p,
.feature-panel.dark li {
    color: white;
}

.feature-panel.accent {
    background: linear-gradient(145deg, rgba(243, 178, 77, 0.22), rgba(255, 255, 255, 0.96));
}

.feature-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.65rem;
    line-height: 1.7;
}

.feature-list.neutral li {
    color: #4f5c72;
}

.inline-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--peak-copper);
    text-decoration: none;
    font-weight: 800;
}

.service-grid,
.market-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-tile,
.market-tile {
    border-radius: 1.6rem;
    background: white;
    padding: 1.45rem;
    border: 1px solid rgba(31, 53, 82, 0.09);
    box-shadow: 0 14px 34px rgba(18, 31, 50, 0.06);
}

.service-tile h3,
.market-tile h3 {
    margin: 0;
    color: var(--peak-navy);
    font-size: 1.18rem;
    font-weight: 800;
}

.value-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 1rem;
}

.value-grid div {
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.65);
    padding: 1rem;
}

.value-grid strong {
    display: block;
    color: var(--peak-navy);
    margin-bottom: 0.4rem;
}

.value-grid span {
    display: block;
    color: #5b687d;
    line-height: 1.6;
}

.contact-stack {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.contact-stack p {
    margin: 0;
}

.contact-stack strong {
    display: block;
    margin-bottom: 0.35rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.contact-stack span,
.contact-stack a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.8;
}

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

.contact-form-grid input,
.contact-form-grid textarea {
    width: 100%;
    border-radius: 1.15rem;
    border: 1px solid rgba(31, 53, 82, 0.1);
    background: white;
    padding: 1rem 1.1rem;
    font: inherit;
}

.submit-button {
    width: fit-content;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    background: linear-gradient(135deg, var(--peak-copper), var(--peak-amber));
    color: var(--peak-navy);
    font-weight: 800;
    cursor: pointer;
}

.site-footer {
    background: linear-gradient(180deg, #0b1930, #081221);
    color: rgba(255, 255, 255, 0.84);
}

.site-footer h4,
.site-footer h5 {
    margin: 0 0 0.9rem;
    color: white;
}

.site-footer p {
    margin: 0;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.74);
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-slider,
    .hero-slide {
        min-height: 36rem;
    }
}

@media (max-width: 640px) {
    .hero-slider,
    .hero-slide {
        min-height: 34rem;
    }

    .hero-content {
        padding-top: 7rem;
        padding-bottom: 6rem;
    }

    .page-hero-card,
    .feature-panel,
    .glass-panel {
        padding: 1.35rem;
        border-radius: 1.5rem;
    }
}
