:root {
  --bg: #0a0a0c;
  --bg-alt: #101014;
  --bg-collection: #0d0d10;
  --surface: #16161b;
  --surface-hover: #1c1c22;
  --text: #f2f2f4;
  --text-soft: #d8d8dc;
  --muted: #8f8f97;
  --muted-dim: #5f5f66;
  --accent: #c9a961;
  --accent-bright: #e6c777;
  --accent-deep: #8a6a1c;
  --border: #26262c;
  --border-gold: rgba(201, 169, 97, 0.25);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* -------- Header -------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  height: 54px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
}

.brand-sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 32px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.25s;
}

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

/* -------- Buttons -------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0c;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--border-gold);
  color: var(--accent);
  padding: 10px 22px;
  margin-left: 32px;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(201, 169, 97, 0.08);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* -------- Hero -------- */
.hero {
  padding: 120px 0 100px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(201, 169, 97, 0.10), transparent 70%),
    linear-gradient(180deg, #0a0a0c 0%, #08080a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.hero::before { top: 0; }
.hero::after { bottom: 0; }

.hero-content { position: relative; z-index: 1; }

.hero-logo {
  width: 168px;
  height: 168px;
  display: block;
  margin: 0 auto 32px;
  border-radius: 32px;
  filter: drop-shadow(0 20px 50px rgba(201, 169, 97, 0.28));
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
  font-weight: 400;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 6.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 26px;
  color: var(--text);
}

.hero h1 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-bright);
}

.hero-lead {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.5;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
}

.hero-divider span {
  display: inline-block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-divider .diamond {
  width: auto;
  height: auto;
  background: none;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0;
}

.hero-marks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

/* -------- Stats -------- */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-alt);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--border);
  padding: 8px 0;
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.stat-num .plus {
  font-size: 24px;
  color: var(--accent-deep);
  margin-left: 2px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* -------- Pillars strip -------- */
.pillars {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 56px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pillar {
  padding: 8px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar:last-child { border-right: none; }

.pillar-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
}

.pillar h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0;
  color: var(--text);
}

.pillar p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* -------- Sections -------- */
.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--bg-alt); }

.section-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 400;
}

.section-eyebrow.gold { color: var(--accent-bright); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0 0 20px;
  max-width: 720px;
}

.section-lead {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 0 40px;
  line-height: 1.55;
  font-style: italic;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 56px;
  color: var(--accent);
}

.ornament::before,
.ornament::after {
  content: '';
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  flex: 0 0 60px;
}
.ornament::after {
  background: linear-gradient(90deg, transparent, var(--accent));
  flex: 1 1 auto;
  max-width: 220px;
}
.ornament span { font-size: 10px; }

/* -------- Cards -------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px 32px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s ease;
}

.card:hover {
  background: var(--surface-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.card:hover::before { width: 100%; }

.card-index {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 14px;
  color: var(--text);
  letter-spacing: -0.2px;
}

.card p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.card-tag {
  display: inline-block;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 100%;
}

/* -------- Collection list -------- */
.section-collection { background: var(--bg-collection); }

.collection-list {
  border-top: 1px solid var(--border);
}

.collection-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 2fr 1fr;
  gap: 24px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.3s;
}

.collection-row:hover { background: rgba(201, 169, 97, 0.04); }

.col-marque {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
}

.col-model {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
}

.col-spec {
  color: var(--muted);
  font-size: 14px;
}

.col-price {
  font-family: var(--serif);
  color: var(--accent-bright);
  font-size: 18px;
  text-align: right;
  font-style: italic;
}

.collection-note {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.3px;
}

/* -------- PCO vehicle list -------- */
.pco-vehicles {
  margin-top: 64px;
  border-top: 1px solid var(--border);
}

.pco-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 2fr 1fr;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.3s;
}

.pco-row:hover { background: rgba(201, 169, 97, 0.04); }

/* -------- Testimonial -------- */
.testimonial {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 97, 0.06), transparent 70%),
    #08080a;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial-inner {
  max-width: 820px;
  position: relative;
}

.quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 120px;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.7;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0 0 32px;
  padding: 0;
}

.testimonial cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

/* -------- About -------- */
.about-copy {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 780px;
  font-style: italic;
}

/* -------- Contact -------- */
.section-dark { background: #050506; }

.contact-lead {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 0 56px;
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item a,
.contact-item span:not(.contact-label) {
  font-family: var(--serif);
  color: var(--text);
  font-size: 20px;
  text-decoration: none;
  transition: color 0.25s;
}

.contact-item a:hover { color: var(--accent); }

/* -------- Footer -------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: #050506;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo {
  height: 48px;
  width: auto;
  opacity: 0.9;
}

.footer-details p {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

.footer-details p strong {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-meta {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-sic {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted-dim);
  max-width: 720px;
}

.footer-sic span {
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 10px;
  margin-right: 6px;
}

.footer-copy {
  margin: 0;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-dim);
  white-space: nowrap;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { padding: 16px 20px; }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .pillar:nth-child(3), .pillar:nth-child(4) { padding-top: 24px; }
  .footer-meta { flex-direction: column; }
}

@media (max-width: 640px) {
  .nav-links a { display: none; }
  .nav-links .btn-outline { display: inline-block; margin-left: 0; }
  .brand-sub { display: none; }
  .section { padding: 80px 0; }
  .hero { padding: 80px 0 70px; }
  .hero-marks { gap: 20px; font-size: 13px; }
  .container { padding: 0 20px; }
}
