:root {
    --bg: #040b14;
    --panel: #0a1628;
    --card: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --text: #f1f5f9;
    --muted: #a5b4c7;
    --teal: #2dd4bf;
    --blue: #38bdf8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.7;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.nav {
    border-bottom: 1px solid var(--border);
    background: rgba(4, 11, 20, 0.94);
}

.nav-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 1.4rem;
    align-items: center;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--teal);
}

.hero {
    padding: clamp(5rem, 11vw, 9rem) 0;
    background:
        linear-gradient(90deg, rgba(4, 11, 20, 0.98), rgba(4, 11, 20, 0.68)),
        var(--hero-image) center / cover;
}

.eyebrow {
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "Outfit", sans-serif;
    line-height: 1.12;
}

h1 {
    max-width: 790px;
    margin: 1rem 0 1.5rem;
    font-size: clamp(2.6rem, 7vw, 5.2rem);
}

.hero p {
    max-width: 680px;
    color: #c4d0df;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    text-decoration: none;
}

.button-primary {
    border: 0;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: #041019;
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-alt {
    background: var(--panel);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    margin: 0.8rem 0;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.section-heading p,
.card p,
.location p {
    color: var(--muted);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.cards.two {
    grid-template-columns: repeat(2, 1fr);
}

.card,
.location {
    padding: 1.6rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--card);
}

.card h3,
.location h2 {
    margin-bottom: 0.7rem;
}

.card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1rem;
}

.link-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.link-list a,
.text-link {
    color: var(--teal);
    font-weight: 800;
    text-decoration: none;
}

.stock-note {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(45, 212, 191, 0.08);
    color: var(--muted);
}

.location {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
}

.footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 760px) {
    .nav-inner,
    .location {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .cards.two {
        grid-template-columns: 1fr;
    }
}
