@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Sora:wght@300;400;500;600&display=swap");

:root {
    --bg: #0e0e0e;
    --bg-soft: #151515;
    --panel: #111111;
    --line: rgba(201, 168, 76, 0.28);
    --gold: #c9a84c;
    --gold-soft: #d9bf78;
    --text: #f5f0e8;
    --muted: #c5baab;
    --max: 1160px;
    --radius: 20px;
    --ease: 280ms cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Sora", "Segoe UI", sans-serif;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background-image: radial-gradient(circle at 82% 10%, rgba(201, 168, 76, 0.12), transparent 34%),
        radial-gradient(circle at 15% 82%, rgba(201, 168, 76, 0.08), transparent 36%),
        linear-gradient(160deg, #0b0b0b 0%, #0f0f0f 52%, #141414 100%);
}

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

img {
    max-width: 100%;
}

.container {
    width: min(var(--max), calc(100% - 3rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    backdrop-filter: blur(16px);
    background: rgba(9, 9, 9, 0.78);
}

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

.brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

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

.nav-links a {
    color: var(--muted);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.cta-chip {
    border: 1px solid var(--line);
    color: var(--gold-soft);
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--ease);
}

.cta-chip:hover {
    border-color: var(--gold);
    color: var(--text);
    transform: translateY(-1px);
}

main {
    padding-bottom: 5rem;
}

section {
    padding: 5.5rem 0;
}

.section-label {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.9rem);
    max-width: 13ch;
}

h2 {
    font-size: clamp(2rem, 3.7vw, 3.2rem);
    max-width: 16ch;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    max-width: 65ch;
}

.hero {
    padding-top: 7rem;
    padding-bottom: 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: end;
}

.pretitle {
    color: var(--gold);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
}

.hero-copy p {
    margin-top: 1.35rem;
    font-size: 1.07rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.78rem 1.3rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--ease);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #b48f30 100%);
    color: #17130b;
    border: 1px solid rgba(201, 168, 76, 0.7);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(245, 240, 232, 0.2);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
}

.hero-panel {
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.02) 0%, rgba(201, 168, 76, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 1.4rem;
}

.panel-line {
    display: flex;
    justify-content: space-between;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--muted);
    font-size: 0.87rem;
}

.panel-line strong {
    color: var(--text);
    font-weight: 500;
}

.panel-line:last-child {
    border-bottom: 0;
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    margin-top: 2rem;
}

.card {
    padding: 1.5rem;
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(0, 0, 0, 0.2) 100%);
    transition: transform var(--ease), border-color var(--ease);
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 168, 76, 0.48);
}

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

.logo-marquee {
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.logo-track {
    display: flex;
    gap: 0.9rem;
    width: max-content;
    animation: marquee 24s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 86px;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(245, 240, 232, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.015);
    color: #dfd5c8;
}

.logo-item img {
    display: block;
    max-width: 110px;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-item span {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.45rem));
    }
}

.steps {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.step {
    border: 1px solid rgba(245, 240, 232, 0.09);
    border-radius: 14px;
    padding: 1.2rem;
}

.step span {
    display: inline-flex;
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    color: var(--gold-soft);
    margin-bottom: 0.7rem;
    font-size: 0.82rem;
}

.list-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.list-item {
    padding: 1.2rem;
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 14px;
}

.quote {
    border-left: 2px solid var(--gold);
    padding: 0.4rem 0 0.4rem 1.2rem;
    margin-top: 1.5rem;
}

.quote p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    color: var(--text);
    line-height: 1.4;
}

.quote small {
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
}

.cta-block {
    border: 1px solid rgba(201, 168, 76, 0.32);
    border-radius: 22px;
    padding: 2rem;
    background: linear-gradient(155deg, rgba(201, 168, 76, 0.11) 0%, rgba(255, 255, 255, 0.01) 75%);
}

form {
    margin-top: 1.7rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.45rem;
    color: var(--gold-soft);
}

input,
textarea,
select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 240, 232, 0.13);
    color: var(--text);
    border-radius: 12px;
    padding: 0.82rem 0.9rem;
    font-family: inherit;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.site-footer {
    border-top: 1px solid rgba(245, 240, 232, 0.08);
    padding: 2.4rem 0;
}

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

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.85rem;
    transition: color var(--ease);
}

.footer-links a:hover {
    color: var(--gold-soft);
}

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

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {

    .hero-grid,
    .grid-two,
    .steps {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .list-grid,
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(var(--max), calc(100% - 2rem));
    }

    .nav-wrap {
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 0.75rem 0;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 0.6rem;
    }

    .card-grid,
    .list-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .logo-track {
        gap: 0.75rem;
        animation-duration: 18s;
    }

    .logo-item {
        padding: 0.75rem 0.95rem;
        min-height: 74px;
    }

    .logo-item img {
        max-width: 88px;
        max-height: 38px;
    }

    .logo-item span {
        font-size: 0.72rem;
    }

    section {
        padding: 4rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
}