/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #060813;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   VARIABLES
========================================== */

:root {

    --background: #060813;
    --background-light: #0c1020;

    --text: #ffffff;
    --text-muted: #9ca1b5;

    --gold: #cba77b;
    --gold-light: #e0c09b;

    --border: rgba(255,255,255,0.12);

    --content-width: 1400px;
    --section-width: 1200px;

    --header-height: 90px;
}

/* ==========================================
   GLOBAL
========================================== */

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

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

ul {
    list-style: none;
}

.site-frame {
    position: relative;
    min-height: 100vh;
    border: 1px solid var(--border);
    margin: 15px;
}

.container {
    width: 100%;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================
   HEADER
========================================== */

.site-header {
    position: relative;
    height: var(--header-height);

    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 30px;

    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);

    transition: 0.3s;
}

.main-nav a:hover {
    color: white;
}

.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================
   HERO
========================================== */

.page-hero {
    position: relative;

    min-height: 800px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 30px;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
            linear-gradient(
                    to bottom,
                    rgba(0,0,0,.60),
                    rgba(6,8,19,1)
            );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-eyebrow {
    color: var(--gold);

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 6px;

    margin-bottom: 20px;
    padding: 1em;
}

.hero-title {
    font-size: clamp(60px, 10vw, 130px);

    font-weight: 800;
    text-transform: uppercase;
    line-height: .95;

    margin-bottom: 30px;
}

.hero-description {
    max-width: 700px;

    margin: 0 auto;

    color: var(--text-muted);
    font-size: 18px;
}

/* ==========================================
   BUTTONS
========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 55px;

    padding: 0 30px;

    border: 1px solid var(--gold);

    color: white;

    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;

    transition: .3s;
}

.btn:hover {
    background: var(--gold);
    color: #000;
}

/* ==========================================
   CARDS
========================================== */

.card {
    position: relative;

    border: 1px solid var(--border);

    background: rgba(255,255,255,.02);

    padding: 30px;
}

.card-title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-muted);
}

/* ==========================================
   FOOTER
========================================== */

.site-footer {
    padding: 120px 30px 60px;

    text-align: center;
}

.footer-logo {
    display: inline-block;

    font-size: 24px;
    font-weight: 700;

    letter-spacing: 10px;
    text-transform: uppercase;

    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;

    margin-bottom: 40px;
}

.footer-nav a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.copyright {
    color: var(--text-muted);
    font-size: 13px;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .main-nav.mobile-open {
        display: flex;

        position: absolute;
        top: 90px;
        left: 20px;
        right: 20px;

        flex-direction: column;

        background: #0c1020;
        border: 1px solid var(--border);

        padding: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 60px;
    }

    .section-title {
        font-size: 36px;
    }

    .site-frame {
        margin: 5px;
    }
}

.video-frame {
    position: relative;
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    padding: 14px;
}

.video-frame::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video-frame iframe {
    position: absolute;
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    border: 0;
}

.gallery-layout {
    max-width: 1180px;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    padding: 14px;
}

.gallery-feature {
    position: relative;
}

.gallery-feature img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-feature figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    background: rgba(6,8,19,.78);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.gallery-feature figcaption span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-feature figcaption strong {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 1px solid var(--border);
    background: rgba(6,8,19,.78);
    color: var(--text);
    cursor: pointer;
    font-size: 22px;
    transition: .3s;
}

.gallery-arrow:hover {
    background: var(--gold);
    color: #060813;
}

.gallery-arrow-prev {
    left: 28px;
}

.gallery-arrow-next {
    right: 28px;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.gallery-thumb {
    flex: 0 0 120px;
    border: 1px solid var(--border);
    background: transparent;
    padding: 5px;
    opacity: .55;
    cursor: pointer;
    transition: .3s;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
    opacity: 1;
    border-color: var(--gold);
}

.gallery-thumb img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

@media (max-width: 700px) {
    .gallery-feature figcaption {
        position: static;
        flex-direction: column;
    }

    .gallery-arrow {
        width: 42px;
        height: 42px;
    }

    .gallery-thumb {
        flex-basis: 92px;
    }

    .gallery-thumb img {
        height: 58px;
    }
}








/* ==========================================
   INFO PAGE
========================================== */

.section-soft {
    background: rgba(255,255,255,.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;

    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);

    padding: 30px;
}

.info-card h3 {
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clean-list {
    padding-left: 20px;
}

.clean-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.stat-panel {
    flex: 0 0 320px;

    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);

    padding: 40px;
    text-align: center;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.timeline-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.timeline-card {
    flex: 1;
    min-width: 250px;

    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);

    padding: 30px;
}

.timeline-card span {
    display: block;

    color: var(--gold);

    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;

    margin-bottom: 12px;
}

.notice-box {
    margin-top: 40px;

    padding: 25px;

    border: 1px solid var(--border);

    background: rgba(255,255,255,.03);
}

.notice-box h3 {
    margin-bottom: 15px;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

.notice-box.important {
    border-color: var(--gold);

    background: rgba(203,167,123,.08);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-list a {
    display: flex;
    gap: 20px;

    padding: 16px 20px;

    border: 1px solid var(--border);

    background: rgba(255,255,255,.03);

    transition: .3s;
}

.schedule-list a:hover {
    border-color: var(--gold);
}

.schedule-list strong {
    color: var(--gold);
    min-width: 90px;
}

.narrow-container {
    max-width: 900px;
    margin: 0 auto;
}

.shipping-box {
    margin: 30px 0;

    padding: 30px;

    border: 1px solid var(--border);

    background: rgba(255,255,255,.03);
}

.rule-list {
    padding-left: 24px;
}

.rule-list li {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.results-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.results-grid a {
    padding: 18px 24px;

    border: 1px solid var(--border);

    text-transform: uppercase;
    letter-spacing: 2px;

    transition: .3s;
}

.results-grid a:hover {
    border-color: var(--gold);
}

.fine-print {
    margin-top: 40px;
    text-align: center;
    color: var(--text-muted);
}

.price-callout {
    color: var(--gold);
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
}

.page-hero-small {
    min-height: 500px;
}

@media (max-width: 900px) {

    .split-layout,
    .info-grid,
    .timeline-grid {
        flex-direction: column;
    }

    .stat-panel {
        flex-basis: auto;
        width: 100%;
    }

    .schedule-list a {
        flex-direction: column;
        gap: 5px;
    }
}










.home-hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.btn-primary {
    background: var(--gold);
    color: #060813;
}

.btn-secondary {
    background: transparent;
}

.site-alert {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(203, 167, 123, 0.08);
    padding: 22px 0;
    text-align: center;
}

.intro-grid,
.action-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.intro-copy,
.intro-image-wrap {
    flex: 1;
}

.intro-copy p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.intro-image-wrap {
    border: 1px solid var(--border);
    padding: 14px;
}

.intro-image,
.image-pair img {
    width: 100%;
    height: auto;
}

.text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.highlight-grid {
    display: flex;
    gap: 28px;
}

.highlight-card,
.action-card {
    flex: 1;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    padding: 34px;
    text-align: center;
}

.highlight-number {
    display: block;
    color: var(--gold);
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
}

.highlight-card h3,
.action-card h3 {
    margin: 18px 0 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight-card p,
.action-card p {
    color: var(--text-muted);
}

.action-card img {
    margin: 0 auto 20px;
}

.image-pair {
    display: flex;
    gap: 30px;
}

.image-pair img {
    border: 1px solid var(--border);
    padding: 10px;
}

.centered-action {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .home-hero {
        min-height: 640px;
    }

    .intro-grid,
    .action-grid,
    .highlight-grid,
    .image-pair {
        flex-direction: column;
    }
}







.form-message {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(203, 167, 123, .12);
    padding: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--text);
}


.form-message.success {
    background: rgba(80, 180, 120, .14);
}

.form-message.error {
    background: rgba(203, 90, 90, .16);
}
.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-intro {
    flex: 0 0 38%;
}

.contact-intro p {
    color: var(--text-muted);
    margin-bottom: 22px;
}

.contact-form {
    position: relative;
    flex: 1;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    padding: 36px;
}

.contact-form fieldset {
    border: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.contact-form legend {
    width: 100%;
    margin-bottom: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
}

.contact-form label {
    flex: 1 1 calc(50% - 11px);
}

.contact-form .full-field {
    flex-basis: 100%;
}

.contact-form span {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(6,8,19,.8);
    color: var(--text);
    padding: 15px 16px;
    font: inherit;
}

.contact-form textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#close {
    float: right;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
}

.form-spinner {
    display: none;
}

@media (max-width: 900px) {
    .contact-layout {
        flex-direction: column;
    }

    .contact-intro {
        flex-basis: auto;
    }

    .contact-form label {
        flex-basis: 100%;
    }
}

.document-preview {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    padding: 15px;
}

.document-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.document-preview iframe {
    width: 100%;
    height: 900px;
    border: 0;
    background: white;
}

@media (max-width: 900px) {
    .document-preview iframe {
        height: 600px;
    }

    .document-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}