.btn {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
    background: transparent;
    text-align: center;
}
.btn:hover, .btn:focus {
    background: var(--gold);
    color: var(--bg);
}
.btn--filled {
    background: var(--gold);
    color: var(--bg);
}
.btn--filled:hover {
    background: var(--ivory);
    border-color: var(--ivory);
}

.card {
    background: var(--bg-soft);
    border-top: 1px solid var(--gold);
    padding: 32px;
    transition: border-color 0.2s ease;
}
.card:hover { border-top-color: var(--ivory); }
.card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--ivory);
}
.card__text {
    color: var(--muted);
    line-height: 1.6;
}

.section {
    padding: var(--section-pad-y) 0;
}
.section__title {
    margin-bottom: 48px;
    font-style: italic;
}
.section__subtitle {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.divider {
    border: 0;
    height: 1px;
    background: var(--line);
    margin: 64px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-logo {
    height: 36px;
    width: auto;
    display: block;
}
.brand-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}
.brand-name {
    font-size: 0.875rem;
    color: var(--muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav { display: flex; gap: 40px; }
.nav-link {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ivory);
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.2s ease;
}
.nav-link:hover::after { width: 100%; }

.lang-switcher {
    display: flex;
    gap: 16px;
    list-style: none;
}
.lang-switcher a {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--muted);
}
.lang-switcher a.active,
.lang-switcher a:hover {
    color: var(--gold);
}

.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: 64px 0 32px;
    margin-top: 96px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-tagline { color: var(--muted); margin-top: 8px; font-style: italic; }
.footer-legal { list-style: none; }
.footer-legal a { font-size: 0.875rem; color: var(--muted); }
.footer-copy {
    color: var(--muted);
    font-size: 0.75rem;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
    padding: var(--section-pad-y) 0;
    border-bottom: 1px solid var(--line);
}
.hero h1 { color: var(--ivory); margin-bottom: 32px; }
.hero p {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 48px;
}

.form { max-width: 640px; }
.form-row { margin-bottom: 24px; }
.form-row label {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--muted);
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ivory);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: var(--gold); }
.form-row textarea { min-height: 160px; resize: vertical; }
.form-error { color: #ff6b6b; font-size: 0.875rem; margin-top: 4px; }
.form-success {
    background: var(--bg-soft);
    border-left: 2px solid var(--gold);
    padding: 16px;
    color: var(--ivory);
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; }
.form-checkbox input { width: auto; margin-top: 4px; }