@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

:root {
    --bg: #1c1c2e;
    --bg-alt: #14141f;
    --gold: #b8963e;
    --gold-light: #d4ae60;
    --ivory: #f0ece4;
    --muted: #a09880;
    --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--ivory);
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.75;
}

a { color: inherit; text-decoration: none; }

.container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 28px;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-alt);
    border-bottom: 1px solid rgba(184,150,62,.2);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 70px;
    gap: 40px;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .04em;
    flex-shrink: 0;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    font-size: 0.88rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.main-nav a {
    color: var(--muted);
    transition: color .2s;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.lang-switcher {
    display: flex;
    gap: 8px;
    font-size: 0.78rem;
    border-left: 1px solid rgba(184,150,62,.2);
    padding-left: 24px;
}

.lang-switcher a { color: var(--muted); }
.lang-switcher a.active { color: var(--gold); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}
.nav-toggle span {
    display: block; width: 22px; height: 1px;
    background: var(--gold);
}

/* HERO */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(184,150,62,.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 620px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--ivory);
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-top: 18px;
}

.hero-sub {
    color: var(--muted);
    font-size: 1rem;
    margin: 24px 0 36px;
    font-style: italic;
    max-width: 480px;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    padding: 13px 32px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Lora', serif;
    font-size: 0.88rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .2s, color .2s;
    border-radius: var(--radius);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--bg);
}

/* SECTIONS */
.section { padding: 80px 0; }

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 40px;
    background: none;
    box-shadow: none;
}

/* DOMAIN CARDS */
.domain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.domain-card {
    padding: 28px 24px;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,.02);
    transition: background .2s;
}

.domain-card:hover { background: rgba(184,150,62,.04); }

.domain-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--ivory);
    margin-bottom: 10px;
}

.domain-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.card-link {
    font-size: 0.82rem;
    color: var(--gold);
    letter-spacing: .04em;
}

.card-link:hover { color: var(--gold-light); }

/* QUOTE */
.quote-section {
    padding: 60px 0;
    border-top: 1px solid rgba(184,150,62,.12);
    border-bottom: 1px solid rgba(184,150,62,.12);
    background: var(--bg-alt);
}

.quote-section blockquote {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.quote-section blockquote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--ivory);
    margin-bottom: 12px;
}

.quote-section blockquote cite {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: .06em;
    font-style: normal;
}

/* CTA BAND */
.cta-band { background: var(--bg-alt); }

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--ivory);
    margin-bottom: 6px;
    background: none;
    box-shadow: none;
}

.cta-inner p { color: var(--muted); font-size: 0.9rem; }

/* PAGE HERO */
.page-hero {
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(184,150,62,.15);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 10px;
    background: none;
    box-shadow: none;
}

.page-hero p { color: var(--muted); font-style: italic; }

/* CONTACT */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info p { color: var(--muted); margin-bottom: 10px; font-size: 0.92rem; }
.confidential-note { color: var(--gold) !important; margin-top: 20px !important; }

.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(184,150,62,.25);
    color: var(--ivory);
    padding: 10px 14px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* FOOTER */
.site-footer {
    background: var(--bg-alt);
    border-top: 1px solid rgba(184,150,62,.15);
    padding: 48px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-col p { color: var(--muted); font-size: 0.85rem; margin-bottom: 4px; }
.footer-name { font-family: 'Playfair Display', serif; color: var(--gold) !important; font-size: 0.95rem !important; margin-bottom: 10px !important; }
.footer-right { text-align: right; }
.footer-bar { color: var(--gold) !important; font-size: 0.8rem !important; letter-spacing: .05em; margin-bottom: 6px !important; }
