/* Lux Ride brand — magazine luxury */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.serif { font-family: "Playfair Display", "Times New Roman", serif; font-weight: 300; letter-spacing: -0.5px; }
.container { max-width: 880px; margin: 0 auto; padding: 0 28px; }
header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(201, 163, 94, 0.12);
}
header .container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 22px; padding-bottom: 22px;
}
.brand {
    display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.brand-mark {
    font-family: "Playfair Display", serif;
    font-size: 22px; letter-spacing: 2px; font-weight: 300;
    color: #fff;
}
.brand-mark .gold { color: #c9a35e; font-weight: 500; }
nav { display: flex; gap: 28px; }
nav a {
    color: rgba(255,255,255,0.55); text-decoration: none;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 500; transition: color 0.2s;
}
nav a:hover { color: #c9a35e; }

.hero {
    padding: 80px 0 100px;
    text-align: center;
}
.eyebrow {
    color: #c9a35e; font-size: 11px; letter-spacing: 4px;
    font-weight: 600; text-transform: uppercase;
    margin-bottom: 24px;
}
.divider-x {
    width: 36px; height: 1px; background: rgba(201, 163, 94, 0.6);
    margin: 24px auto;
}
h1.serif {
    font-size: clamp(38px, 6vw, 64px); line-height: 1.05;
    color: #fff; margin-bottom: 18px;
}
h2.serif {
    font-size: clamp(26px, 4vw, 36px); line-height: 1.15;
    color: #fff; margin: 48px 0 18px;
    border-left: 2px solid #c9a35e; padding-left: 18px;
}
h3 {
    font-size: 18px; font-weight: 600; color: #fff;
    margin: 32px 0 12px;
}
.subtitle {
    color: rgba(255,255,255,0.6); font-size: 16px; max-width: 540px; margin: 0 auto;
    line-height: 1.6;
}
section { padding: 40px 0; }

article p { margin-bottom: 16px; color: rgba(255,255,255,0.75); }
article ul { padding-left: 24px; margin-bottom: 20px; }
article ul li { margin-bottom: 10px; color: rgba(255,255,255,0.75); }
article strong { color: #fff; font-weight: 600; }
article a { color: #c9a35e; text-decoration: none; border-bottom: 1px solid rgba(201, 163, 94, 0.4); }
article a:hover { border-bottom-color: #c9a35e; }

.meta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px; border: 1px solid rgba(201, 163, 94, 0.3);
    border-radius: 100px; font-size: 11px;
    color: #c9a35e; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 18px;
}
.meta::before {
    content: ''; width: 6px; height: 6px; background: #c9a35e;
    border-radius: 50%; box-shadow: 0 0 12px #c9a35e;
}
.toc {
    background: rgba(201, 163, 94, 0.04);
    border: 1px solid rgba(201, 163, 94, 0.18);
    border-radius: 14px;
    padding: 24px 28px;
    margin: 32px 0 48px;
}
.toc-title {
    font-size: 11px; color: rgba(255,255,255,0.5);
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 14px; font-weight: 600;
}
.toc ol { padding-left: 22px; }
.toc ol li { margin-bottom: 6px; font-size: 14px; }
.toc ol li a {
    color: rgba(255,255,255,0.75); text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.toc ol li a:hover { color: #c9a35e; border-bottom-color: rgba(201, 163, 94, 0.5); }

.callout {
    background: rgba(201, 163, 94, 0.08);
    border-left: 3px solid #c9a35e;
    padding: 18px 24px;
    margin: 24px 0;
    border-radius: 0 10px 10px 0;
}
.callout-warning {
    background: rgba(217, 62, 62, 0.08);
    border-left-color: #d93e3e;
}
.callout-warning strong { color: #d93e3e; }

footer {
    margin-top: 80px;
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
footer .links {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    margin: 18px 0;
}
footer .links a {
    color: rgba(255,255,255,0.5);
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    text-decoration: none; transition: color 0.2s;
}
footer .links a:hover { color: #c9a35e; }
footer .copy {
    color: rgba(255,255,255,0.3); font-size: 12px; margin-top: 16px;
}

@media (max-width: 720px) {
    nav { display: none; }
    header .container { padding-top: 16px; padding-bottom: 16px; }
    section { padding: 28px 0; }
}

/* Brand image (replaces .brand-mark in header/footer) */
.brand-img {
    height: 26px;
    width: auto;
    display: block;
    filter: brightness(1.05);
}
footer .brand-img { height: 22px; opacity: 0.9; margin: 0 auto; }
