/* =========================
   Global Styles
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;

    font-family: "Spectral SC", serif;
    color: #f5f5f5;

    background:
        radial-gradient(
            circle at top right,
            rgba(40, 70, 140, 0.80),
            transparent 30%
        ),
        linear-gradient(
            to bottom,
            #0a0a0a,
            #010101
        );
}

/* =========================
   Background Video
========================= */

.background-video {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -2;

    opacity: 0.85;
}

.site-header,
main {
    position: relative;
    z-index: 2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.55)
        );

    z-index: -1;
    pointer-events: none;
}

main {
    width: 100%;
}

/* =========================
   Header / Navigation
========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;

    width: 100%;
    padding: 45px 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */

.logo {
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* Emblem */

.nav-emblem {
    height: 45px;
    width: auto;
    display: block;
    flex-shrink: 0;
    margin-right: 8px;
}

/* Navigation Menu */

.site-header nav {
    display: flex;
    align-items: center;
    gap: 0;
    background: transparent;
    border: none;
    position: relative;
    overflow: visible;
}

.nav-links {
    display: contents;
}

.site-header nav a {
    color: rgb(255, 254, 252);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Spectral SC', serif;
    letter-spacing: 0.06em;
    padding: 0 20px;
    transition: color 0.2s;
}

.site-header nav a + a {
    border-left: 0.5px solid rgba(255, 255, 255, 0.12);
}

.site-header nav a:visited {
    color: rgba(240, 236, 227, 0.6);
}

.site-header nav a:hover {
    color: #c9b97a;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 100vh;
    width: 100%;
    padding: 220px 0 90px 120px;
}

.hero-content,
.ticker-wrap {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 850px;
    transform: translate(-45px, -20px);
}

.hero-content h1 {
    margin: 0 0 55px;

    font-size: 60px;
    font-weight: 400;
    line-height: 1.05;
}

.hero-content p {
    max-width: 850px;
    margin-bottom: 80px;

    font-size: 20px;
    line-height: 1.25;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    height: 50px;

    border: 0.5px solid rgba(201, 185, 122, 0.4);
    border-top: none;
    border-radius: 2px;

    color: #c9b97a;
    text-decoration: none;
    font-family: 'Spectral SC', serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;

    background: transparent;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, border-color 0.25s;
}

.outline-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9b97a, transparent);
}

.outline-btn:hover {
    background: rgba(201, 185, 122, 0.07);
    border-color: rgba(201, 185, 122, 0.7);
}

/* =========================
   Ticker
========================= */

.ticker-wrap {
    position: absolute;
    bottom: 130px;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.ticker {
    display: flex;
    width: max-content;
    white-space: nowrap;

    font-size: 44px;
    color: #f5f5f5;

    animation: ticker-scroll 45s linear infinite;
}

.ticker span {
    padding-right: 80px;
}

.ticker span::after {
    content: "·";
    margin-left: 80px;
    opacity: 0.4;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================
   Contact Section
========================= */

.contact-section {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}

.contact-left {
    padding: 80px 60px 80px 120px;
    border-right: 0.5px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-eyebrow {
    font-family: 'Spectral SC', serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #c9b97a;
    margin-bottom: 1.25rem;
    display: block;
}

.contact-left h2 {
    font-family: 'Spectral SC', serif;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: #f0ece3;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin: 0 0 1.5rem;
}

.contact-left p {
    font-family: 'Spectral SC', serif;
    font-size: 13px;
    color: rgba(232, 228, 220, 0.6);
    line-height: 1.85;
    font-weight: 300;
    margin: 0;
    max-width: 300px;
}

.contact-right {
    padding: 80px 120px 80px 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-family: 'Spectral SC', serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

/* Top-edge gradient glow — same as product card ::before */
.field-group .input-wrap {
    position: relative;
}

.field-group .input-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6b9fd4, transparent);
    z-index: 1;
    pointer-events: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.025);
    border: 0.5px solid rgba(107, 159, 212, 0.4);
    border-top: none;
    border-radius: 2px;
    font-family: 'Spectral SC', serif;
    font-size: 13px;
    color: #f0ece3;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input {
    padding: 10px 14px;
}

.contact-form textarea {
    padding: 12px 14px;
    resize: none;
    height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(107, 159, 212, 0.6);
    background: rgba(107, 159, 212, 0.03);
}

.contact-form button {
    width: 100%;
    font-family: 'Spectral SC', serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c9b97a;
    background: transparent;
    border: 0.5px solid rgba(201, 185, 122, 0.4);
    border-top: none;
    border-radius: 1px;
    padding: 14px 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, border-color 0.25s;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9b97a, transparent);
}

.contact-form button:hover {
    background: rgba(201, 185, 122, 0.07);
    border-color: rgba(201, 185, 122, 0.7);
}

.form-success {
    display: none;
    font-family: 'Spectral SC', serif;
    font-size: 13px;
    color: #c9b97a;
    letter-spacing: 0.08em;
    padding: 2rem 0;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {

    .site-header {
        padding: 25px 30px;
        flex-direction: column;
        gap: 20px;
    }

    .logo img {
        height: 45px;
    }

    .site-header nav {
        gap: 20px;
        padding: 14px 22px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        padding: 220px 35px 90px 35px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 58px;
        line-height: 1.05;
    }

    .hero-content p {
        font-size: 22px;
        max-width: 100%;
    }

    .ticker {
        font-size: 34px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-left {
        border-right: none;
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
        padding: 60px 35px 50px;
    }

    .contact-right {
        padding: 50px 35px 60px;
    }

    .name-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .outline-btn {
        width: 240px;
        height: 60px;
    }

    .site-header nav {
        gap: 14px;
        font-size: 12px;
    }

    .site-header nav a {
        font-size: 12px;
    }
}