@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --navy: #0b1f35;
    --navy2: #122d4c;
    --gold: #bd9138;
    --gold2: #e0bd70;
    --ink: #172333;
    --muted: #667085;
    --paper: #f7f8fa;
    --white: #fff;
    --line: #e7eaf0;
    --shadow: 0 16px 45px rgba(8, 25, 45, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65
}

.container {
    width: min(1160px, 92%);
    margin: auto
}

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

.top {
    background: #071525;
    color: #dfe7ef;
    font-size: .86rem
}

.top .container {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    gap: 15px
}

.nav {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 3px 18px rgba(0, 0, 0, .06)
}

.navin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display';
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy)
}

.brand img {
    width: 48px;
    height: 58px;
    object-fit: contain
}

.links {
    display: flex;
    gap: 23px;
    font-size: .88rem;
    font-weight: 700
}

.links a {
    position: relative;
    padding: 8px 0
}

.links a:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    background: var(--gold);
    left: 0;
    bottom: 0;
    transition: .3s
}

.links a:hover:after,
.links a.active:after {
    width: 100%
}

.menu {
    display: none;
    border: 0;
    background: var(--navy);
    color: #fff;
    padding: 10px;
    border-radius: 8px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--gold), #a8761d);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 14px 23px;
    font-weight: 700;
    font-size: .86rem;
    letter-spacing: .2px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(189, 145, 56, .22);
    transition: transform .25s, box-shadow .25s, background .25s
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 28px rgba(189, 145, 56, .35);
    background: linear-gradient(135deg, #d1aa5d, var(--gold))
}

.btn:active {
    transform: translateY(0)
}

.btn.outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .7);
    box-shadow: none
}

.btn.outline:hover {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .2)
}

.hero {
    min-height: 570px;
    background: linear-gradient(90deg, rgba(6, 19, 34, .92), rgba(8, 25, 44, .58)), url('../images/44.jpg') center/cover;
    display: flex;
    align-items: center;
    color: #fff
}

.eyebrow {
    color: var(--gold2);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .75rem;
    font-weight: 700
}

.hero h1,
.pagehero h1,
h1,
h2 {
    font-family: 'Playfair Display', serif
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.08;
    max-width: 720px;
    margin: 12px 0 18px
}

.hero p {
    max-width: 620px;
    color: #d9e1e9;
    font-size: 1.08rem
}

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

.stats {
    background: var(--navy);
    color: #fff
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 0
}

.stat {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .12);
    font-size: .84rem
}

.stat strong {
    display: block;
    color: var(--gold2);
    font-size: 1.25rem
}

section {
    padding: 78px 0
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px
}

.section-title h2 {
    font-size: 2.35rem;
    margin: 7px 0
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 7px 24px rgba(15, 35, 55, .05);
    transition: .3s
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: #dcc18a
}

.icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #f8f1e4;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 17px
}

.card h3 {
    margin: 0 0 8px;
    font-family: 'Playfair Display'
}

.team-card {
    padding: 0;
    height: 500px;
    overflow: hidden
}

.team-card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    transition: transform .5s
}

.team-card:hover img {
    transform: scale(0.99)
}

.team-card .inside {
    padding: 22px
}

.team-card small {
    color: var(--gold);
    font-weight: 700
}

.cta {
    background: linear-gradient(120deg, var(--navy), var(--navy2));
    color: #fff
}

.cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.pagehero {
    height: 280px;
    color: #fff;
    background: linear-gradient(90deg, rgba(8, 24, 42, .88), rgba(8, 24, 42, .42)), url('../images/22.jpg') center/cover;
    display: flex;
    align-items: center
}

.pagehero h1 {
    font-size: 3rem;
    margin: 0
}

.crumb {
    color: #e1e7ed;
    font-size: .9rem
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.feature-list {
    padding: 0;
    list-style: none
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line)
}

.feature-list li:before {
    content: "✓";
    color: var(--gold);
    font-weight: 900;
    margin-right: 10px
}

.form-wrap {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px
}

.field label {
    font-weight: 700;
    font-size: .85rem
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #dce2e9;
    border-radius: 9px;
    background: #fbfcfd;
    font: inherit;
    outline: none;
    transition: .25s
}

.field textarea {
    min-height: 140px;
    resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(189, 145, 56, .12)
}

.form-note {
    font-size: .8rem;
    color: var(--muted)
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px
}

.contact-card {
    background: var(--paper);
    padding: 22px;
    border-radius: 13px
}

.contact-card strong {
    display: block;
    color: var(--navy);
    margin-bottom: 5px
}

.article {
    border-bottom: 1px solid var(--line);
    padding: 24px 0
}

.article h2 {
    margin: 0 0 7px
}

.footer {
    background: #071525;
    color: #c7d1db;
    padding: 55px 0 18px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 35px
}

.footer h4 {
    color: #fff
}

.footer a {
    display: block;
    margin: 8px 0
}

.copy {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 30px;
    padding-top: 18px;
    font-size: .83rem
}

.chat-toggle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #9d701e);
    color: #fff;
    font-size: 1.4rem;
    z-index: 1000;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    cursor: pointer
}

.chat {
    position: fixed;
    right: 24px;
    bottom: 96px;
    width: min(360px, calc(100vw - 30px));
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    overflow: hidden;
    z-index: 1000;
    display: none
}

.chat.open {
    display: block;
    animation: pop .3s
}

.chat-head {
    padding: 16px;
    background: var(--navy);
    color: #fff;
    display: flex;
    justify-content: space-between
}

.chat-body {
    height: 330px;
    overflow: auto;
    padding: 16px;
    background: #f8fafc
}

.bubble {
    max-width: 82%;
    padding: 11px 13px;
    border-radius: 12px;
    margin: 9px 0;
    background: #e8edf3
}

.bubble.me {
    margin-left: auto;
    background: #f3e3bc
}

.quick {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 10px
}

.quick button {
    background: #fff;
    border: 1px solid #d9c08d;
    border-radius: 20px;
    padding: 7px 10px;
    color: var(--navy);
    cursor: pointer
}

.chat-form {
    display: flex;
    border-top: 1px solid var(--line)
}

.chat-form input {
    border: 0;
    padding: 14px;
    flex: 1;
    outline: 0
}

.chat-form button {
    border: 0;
    background: var(--gold);
    color: #fff;
    padding: 0 16px
}

@keyframes pop {
    from {
        opacity: 0;
        transform: translateY(15px) scale(.96)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.reveal {
    animation: fade .7s both
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:800px) {
    .top .container {
        font-size: .7rem
    }

    .links {
        display: none
    }

    .links.show {
        display: flex;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        box-shadow: var(--shadow)
    }

    .menu {
        display: block
    }

    .hero {
        min-height: 520px
    }

    .stats .container,
    .grid,
    .contact-cards,
    .footer-grid,
    .split,
    .form-grid {
        grid-template-columns: 1fr
    }

    .stats .container {
        gap: 12px
    }

    .stat {
        border: 0
    }

    .cta .container {
        display: block
    }

    .pagehero {
        height: 230px
    }

    .pagehero h1 {
        font-size: 2.3rem
    }
}