@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --noir: #0a0a0a;
  --noir-soft: #141414;
  --blanc: #ffffff;
  --or: #d4af37;
  --or-clair: #f0d878;
  --gris: #f8f6f3;
  --gris-texte: #666666;
  --vert-whatsapp: #25d366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--noir);
  line-height: 1.7;
  background: var(--blanc);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  background: var(--noir);
  color: var(--blanc);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--or);
  text-decoration: none;
  text-transform: uppercase;
}

.logo span {
  color: var(--blanc);
  font-weight: 300;
  letter-spacing: 1px;
}

nav a {
  color: var(--blanc);
  text-decoration: none;
  margin-left: 32px;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width 0.3s;
}

nav a:hover { color: var(--or); }
nav a:hover::after { width: 100%; }

.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
  color: var(--blanc);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
  letter-spacing: 1px;
}

.hero h1 em {
  color: var(--or);
  font-style: normal;
}

.hero p {
  font-size: 1.1rem;
  color: #aaaaaa;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.2);
}

.btn-primary {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
}

.btn-primary:hover {
  background: var(--or-clair);
  border-color: var(--or-clair);
}

.btn-outline {
  background: transparent;
  color: var(--blanc);
  border-color: rgba(255,255,255,0.3);
  margin-left: 16px;
}

.btn-outline:hover {
  border-color: var(--or);
  color: var(--or);
}

.btn-whatsapp {
  background: var(--vert-whatsapp);
  color: var(--blanc);
  border-color: var(--vert-whatsapp);
}

.hero-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-img {
  width: 180px;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: transform 0.4s;
}

.hero-img:hover { transform: translateY(-8px); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 48px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--or);
  margin: 16px auto 0;
}

.articles-section {
  padding: 80px 0;
  background: var(--gris);
}

.article-card {
  background: var(--blanc);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 900px;
  margin: 0 auto 32px;
  display: flex;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.article-image {
  width: 320px;
  min-height: 280px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: 40px;
  flex: 1;
}

.article-tag {
  display: inline-block;
  background: var(--or);
  color: var(--noir);
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.article-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 14px;
  line-height: 1.25;
  font-weight: 600;
}

.article-card h2 a {
  color: var(--noir);
  text-decoration: none;
  transition: color 0.2s;
}

.article-card h2 a:hover { color: var(--or); }

.article-excerpt {
  color: var(--gris-texte);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.read-more {
  color: var(--or);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--or);
  padding-bottom: 4px;
  transition: all 0.2s;
}

.read-more:hover {
  color: var(--noir);
  border-color: var(--noir);
}

.article-page {
  padding: 60px 0;
}

.article-header {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.article-meta {
  color: var(--gris-texte);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.article-body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #333;
  line-height: 1.8;
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin: 48px 0 20px;
  color: var(--noir);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.article-body h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--or);
  margin-top: 12px;
}

.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 32px 0 14px;
  color: var(--noir);
  font-weight: 600;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body strong { color: var(--noir); font-weight: 600; }

.article-body ul, .article-body ol {
  margin: 18px 0 28px 28px;
}

.article-body li {
  margin-bottom: 12px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 40px;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.comparison-table th {
  background: var(--noir);
  color: var(--or);
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  background: var(--blanc);
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:nth-child(even) td { background: #fafafa; }

.cta-box {
  background: linear-gradient(135deg, #f8f4ec, #fff);
  border: 2px solid var(--or);
  border-radius: 8px;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--or), var(--or-clair), var(--or));
}

.cta-box p {
  margin-bottom: 24px;
  font-size: 1.15rem;
  color: var(--noir);
}

.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--noir);
  font-weight: 600;
}

footer {
  background: var(--noir);
  color: #777;
  padding: 50px 0;
  text-align: center;
  font-size: 0.9rem;
}

footer a { color: var(--or); text-decoration: none; }

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--vert-whatsapp);
  color: var(--blanc);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.contact-section {
  padding: 80px 0;
  text-align: center;
  background: var(--gris);
}

.contact-card {
  background: var(--blanc);
  border-radius: 8px;
  padding: 50px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.contact-card h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}

.contact-card p {
  color: var(--gris-texte);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.luxury-showcase {
  padding: 60px 0;
  background: var(--noir);
  text-align: center;
}

.luxury-showcase h2 {
  font-family: 'Playfair Display', serif;
  color: var(--blanc);
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.luxury-showcase h2 em {
  color: var(--or);
  font-style: normal;
}

.showcase-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.showcase-img {
  width: 220px;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: transform 0.4s;
}

.showcase-img:hover { transform: translateY(-8px); }

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .btn { display: block; margin: 12px auto; width: 90%; max-width: 320px; }
  .btn-outline { margin-left: auto; }
  nav a { margin-left: 16px; font-size: 0.8rem; }
  .article-header h1 { font-size: 1.9rem; }
  .article-card { flex-direction: column; }
  .article-image { width: 100%; height: 220px; }
  .showcase-img { width: 160px; height: 220px; }
  .hero-img { width: 140px; height: 190px; }
}