*,
*::before,
*::after {
    box-sizing: border-box;
}

.qg-sticky-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qg-sticky-btn {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0bf5c 0%, #c89b3c 100%);
    color: #261900;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qg-sticky-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(240, 191, 92, 0.5);
}

.qg-sticky-btn svg {
    width: 26px;
    height: 26px;
}

.qg-sticky-btn .material-symbols-outlined {
    font-size: 26px;
}

@media (max-width: 599px) {
    .qg-sticky-actions {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .qg-sticky-btn {
        width: 48px;
        height: 48px;
    }

    .qg-sticky-btn svg {
        width: 22px;
        height: 22px;
    }

    .qg-sticky-btn .material-symbols-outlined {
        font-size: 22px;
    }
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: #e4e2e2;
    font-size: 16px;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
blockquote {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

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

button {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    text-align: inherit;
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

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

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-fill-1 {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.gold-gradient {
    background: linear-gradient(135deg, #f0bf5c 0%, #c89b3c 100%);
}

html,
body {
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

span.material-symbols-outlined.nav-dropdown-caret {
    transform: rotate(0deg);
}

.site-logo {
    display: flex;
    align-items: center;
    height: 77px;
    flex-shrink: 0;
    width: 180px;
    margin-left: -25px;
}

.site-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    width: 100% !important;
    max-width: 100%;
    margin-left: -20ps;
}

.cta-glow:hover {
    box-shadow: 0 0 20px rgba(200, 155, 60, 0.2);
}

.eyebrow-tracking {
    letter-spacing: 0.2em;
}

.aspect-4-5 {
    aspect-ratio: 4 / 5;
}

.section-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(24px, 4vw);
    padding-right: max(24px, 4vw);
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(24px, 4vw);
    padding-right: max(24px, 4vw);
    height: 100px;
}

.site-nav-panel {
    display: contents;
}

.site-nav-panel-head,
.site-nav-cta-mobile,
.site-nav-overlay {
    display: none;
}

.site-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    display: inline-block;
    color: #e4e2e2;
    font-weight: 500;
    padding-bottom: 4px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #f0bf5c;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #f0bf5c;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.is-current {
    color: #f0bf5c;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-link.is-current::after {
    transform: scaleX(1);
}

.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-caret {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.25s ease;
    margin-bottom: -4px;
    transform: rotate(270deg);
}

.nav-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-dropdown-link {
    display: block;
    color: #e4e2e2;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.is-active {
    color: #f0bf5c;
}

.nav-dropdown-link-all {
    color: #f0bf5c;
    font-weight: 700;
}

.nav-dropdown-back {
    display: none;
}

@media (min-width: 1040px) {

    .nav-dropdown-panel {
        position: absolute;
        top: calc(100% + 16px);
        left: 50%;
        min-width: 260px;
        background: #171717;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 10;
    }

    .nav-item-dropdown:hover .nav-dropdown-panel,
    .nav-item-dropdown.is-open .nav-dropdown-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .nav-item-dropdown:hover .nav-dropdown-caret,
    .nav-item-dropdown.is-open .nav-dropdown-caret {
        transform: rotate(180deg);
    }

    .nav-dropdown-link {
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 14px;
    }

    .nav-dropdown-link:hover {
        background: rgba(240, 191, 92, 0.08);
    }

    .nav-dropdown-link-all {
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 12px;
    }
}

@media (max-width: 1039px) {
    .site-nav-cta-desktop {
        display: none;
    }
}

.hamburger-btn {
    position: relative;
    z-index: 80;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
    background: rgba(240, 191, 92, 0.12);
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.hamburger-btn[aria-expanded="true"] {
    background: rgba(240, 191, 92, 0.12);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #f0bf5c;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1040px) {
    .hamburger-btn {
        display: none;
    }
}

@media (max-width: 1039px) {
    .site-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 60;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    span.material-symbols-outlined.nav-dropdown-caret {
        transform: rotate(270deg);
    }

    .site-nav-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    .site-nav-panel {
        display: flex;
        flex-direction: column;
        position: fixed;

        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: #111111;
        z-index: 70;
        padding: 24px;
        overflow-x: hidden;
        overflow-y: auto;

        clip-path: circle(0% at var(--menu-origin-x, 100%) var(--menu-origin-y, 0%));
        transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        will-change: clip-path;
        pointer-events: none;
    }

    .site-nav-panel.is-open {
        clip-path: circle(145% at var(--menu-origin-x, 100%) var(--menu-origin-y, 0%));
        transition: clip-path 1.3s cubic-bezier(0.22, 1, 0.36, 1);
        pointer-events: auto;
    }

    .site-nav-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        min-height: 32px;
    }

    .site-nav-panel-title {
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(228, 226, 226, 0.5);
    }

    .site-nav-list {
        flex: 1;
        flex-direction: column;
        align-items: stretch;

        gap: 2px;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 14px 8px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        padding-left: 14px;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 8px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;

    }

    .nav-item-dropdown.is-open .nav-dropdown-caret {
        transform: rotate(180deg);
    }

    .nav-item-dropdown {
        position: static;
    }

    .nav-dropdown-panel {
        position: absolute;
        top: -24px;
        left: -24px;
        right: -24px;
        bottom: -24px;
        display: flex;
        flex-direction: column;
        background: #111111;
        padding: 24px;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 5;
    }

    .nav-item-dropdown.is-open .nav-dropdown-panel {
        transform: translateX(0);

        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
        padding: 48px;
    }

    .nav-dropdown-back {
        display: flex;
        align-items: center;
        gap: 6px;
        width: 100%;
        padding: 8px 8px 20px;
        background: none;
        border: none;
        color: #f0bf5c;
        font-weight: 700;
        font-size: 14px;
        text-align: left;
        cursor: pointer;
    }

    .nav-dropdown-menu {
        display: flex;
        flex-direction: column;

        flex: 1;
    }

    .nav-dropdown-link {
        padding: 12px 8px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .site-nav-cta-mobile {
        display: block;
        margin-top: auto;
        width: 100%;
        background: linear-gradient(135deg, #f0bf5c 0%, #c89b3c 100%);
        color: #412d00;
        font-weight: 700;
        border: none;
        border-radius: 0.5rem;
        padding: 14px;
        cursor: pointer;
        transition: transform 0.25s ease;
        text-align: center;
    }

    .site-nav-cta-mobile:hover {
        transform: scale(1.02);
    }
}

body.mobile-menu-open {
    overflow: hidden;
}

.site-footer {
    background: #16130d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-newsletter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-newsletter-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 48px;
}

.footer-newsletter-copy {
    max-width: 480px;
}

.footer-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-newsletter-input {
    min-width: 260px;
    flex: 1 1 260px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font: inherit;
}

.footer-newsletter-input::placeholder {
    color: rgba(228, 226, 226, 0.5);
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: #f0bf5c;
}

.footer-newsletter-submit {
    background: linear-gradient(135deg, #f0bf5c 0%, #c89b3c 100%);
    color: #412d00;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.25s ease;
}

.footer-newsletter-submit:hover {
    transform: scale(1.02);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    padding-top: 48px;
    padding-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 2fr repeat(3, 1fr);
        gap: 24px;
    }
}

.footer-brand {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: auto;
    }
}

.footer-col-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

@media (min-width: 1025px) {
    .footer-col-title {
        font-size: 18px;
        line-height: 26px;
    }
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #b7b5b5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #f0bf5c;
}

.footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: rgba(228, 226, 226, 0.5);
    font-size: 14px;
}

.back-to-services {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f0bf5c;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 24px;
    transition: gap 0.25s ease;
}

.back-to-services:hover {
    gap: 10px;
}

.footer-brand .h-10.flex.items-center.mb-md {
    width: 180px;
}

img.h-full.w-auto.object-contain {
    height: 77px;
    width: 100%;
    margin-left: -30px;
}


p.text-on-surface-variant.opacity-70.max-w-xs {
    margin-top: 40px
}