/* ─── Design tokens — Maison Select — Noir · Blanc · Or ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --noir:       #0c0b09;
  --noir-2:     #161410;
  --noir-3:     #1f1c17;
  --or:         #c9a84c;
  --or-light:   #e2c47a;
  --or-dim:     rgba(201, 168, 76, 0.18);
  --or-line:    rgba(201, 168, 76, 0.30);
  --creme:      #f5f0e8;
  --creme-2:    #ede8dd;
  --texte:      #e8e4da;
  --texte-muted:#9e9a91;
  --texte-dim:  #63605a;
  --max:        1080px;
  --rad:        2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: var(--texte);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }

/* ─── Utilitaires ─── */
.or { color: var(--or); }
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 20px;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--or);
  margin: 28px 0;
}
.divider-center { margin: 28px auto; }

/* ─── Boutons ─── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--or);
  color: var(--or);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover {
  background: var(--or);
  color: var(--noir);
}
.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--or);
  color: var(--noir);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.25s;
}
.btn-secondary:hover { opacity: 0.88; }

/* ─── Nav ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--creme);
}
.nav-logo span { color: var(--or); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--texte-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--or); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 168, 76, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--creme);
  max-width: 820px;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--or-light);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--texte-muted);
  max-width: 480px;
  line-height: 1.8;
  margin: 0 auto 48px;
}
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-rule {
  margin-top: 100px;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
.hero-rule-item {
  text-align: center;
}
.hero-rule-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--or);
  line-height: 1;
  display: block;
}
.hero-rule-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texte-dim);
  margin-top: 6px;
  display: block;
}
.hero-rule-sep {
  width: 1px;
  height: 48px;
  background: var(--or-line);
}

/* ─── Comment ça marche ─── */
.how {
  padding: 130px 40px;
  background: var(--noir-2);
  position: relative;
}
.how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-line), transparent);
}
.how-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.how-header {
  max-width: 520px;
  margin-bottom: 80px;
}
.how h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--creme);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--or-line);
}
.step {
  background: var(--noir-2);
  padding: 48px 36px;
  position: relative;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--or-dim);
  line-height: 1;
  margin-bottom: 28px;
  display: block;
  /* render number with subtle gold fill */
  -webkit-text-stroke: 1px var(--or-line);
  color: transparent;
}
.step h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--creme);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.875rem;
  color: var(--texte-muted);
  line-height: 1.75;
}
.step-arrow {
  position: absolute;
  top: 48px; right: -14px;
  width: 28px; height: 28px;
  background: var(--noir);
  border: 1px solid var(--or-line);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--or);
  font-size: 12px;
}

/* ─── Nos services ─── */
.services {
  padding: 130px 40px;
}
.services-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}
.services h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--creme);
  max-width: 400px;
}
.services-note {
  font-size: 0.85rem;
  color: var(--texte-dim);
  max-width: 260px;
  text-align: right;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--noir-3);
  border: 1px solid rgba(201, 168, 76, 0.10);
  padding: 44px 36px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--or-line);
  transform: translateY(-4px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 1.6rem;
  margin-bottom: 24px;
  display: block;
  color: var(--or);
}
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--creme);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--texte-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--or);
  font-weight: 400;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--or-line);
  padding-top: 20px;
  display: block;
}

/* ─── Pourquoi Maison Select ─── */
.why {
  padding: 130px 40px;
  background: var(--noir-2);
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-line), transparent);
}
.why-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}
.why-text h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--creme);
  margin-bottom: 24px;
}
.why-text p {
  font-size: 0.9rem;
  color: var(--texte-muted);
  line-height: 1.8;
}
.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar {
  padding: 36px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.10);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  transition: padding-left 0.3s;
}
.pillar:first-child { padding-top: 0; }
.pillar:last-child { border-bottom: none; }
.pillar:hover { padding-left: 8px; }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--or);
  line-height: 1;
  padding-top: 4px;
}
.pillar h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--creme);
  margin-bottom: 8px;
}
.pillar p {
  font-size: 0.875rem;
  color: var(--texte-muted);
  line-height: 1.75;
}

/* ─── Témoignages ─── */
.temoignages {
  padding: 130px 40px;
}
.temoignages-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.temoignages-header {
  text-align: center;
  margin-bottom: 72px;
}
.temoignages h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--creme);
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--or-line);
}
.temoignage {
  background: var(--noir);
  padding: 44px 36px;
}
.temoignage-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--texte-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  min-height: 100px;
  display: flex;
  align-items: flex-start;
}
.temoignage-author {
  border-top: 1px solid var(--or-line);
  padding-top: 20px;
}
.temoignage-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--creme);
  letter-spacing: 0.06em;
  display: block;
}
.temoignage-detail {
  font-size: 0.78rem;
  color: var(--texte-dim);
  letter-spacing: 0.08em;
  display: block;
  margin-top: 4px;
}
.temoignage-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--texte-dim);
  margin-top: 8px;
}
.temoignage-placeholder span {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--or-line);
}

/* ─── Contact ─── */
.contact {
  padding: 130px 40px;
  background: var(--noir-2);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-line), transparent);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.contact-text h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--creme);
  margin-bottom: 20px;
}
.contact-text p {
  font-size: 0.9rem;
  color: var(--texte-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid var(--or-line);
  padding: 12px 24px;
  transition: background 0.25s, color 0.25s;
}
.contact-whatsapp:hover {
  background: var(--or);
  color: var(--noir);
}
.contact-whatsapp svg {
  width: 16px; height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texte-dim);
}
.form-group input,
.form-group textarea {
  background: var(--noir-3);
  border: 1px solid rgba(201, 168, 76, 0.12);
  color: var(--texte);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--texte-dim);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--or-line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: var(--noir-3);
  border: 1px solid var(--or-line);
  color: var(--creme);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
}

/* ─── Footer ─── */
.site-footer {
  padding: 48px 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--creme);
}
.footer-logo span { color: var(--or); }
.footer-note {
  font-size: 0.78rem;
  color: var(--texte-dim);
  letter-spacing: 0.06em;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.25s; }
.animate-delay-3 { animation-delay: 0.4s; }
.animate-delay-4 { animation-delay: 0.55s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .site-nav { padding: 18px 24px; }
  .nav-links { display: none; }

  .hero { padding: 120px 24px 80px; }
  .hero-rule { gap: 24px; flex-wrap: wrap; }

  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .services-note { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }

  .why-inner { grid-template-columns: 1fr; gap: 60px; }

  .temoignages-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }

  .how, .services, .why, .temoignages, .contact {
    padding: 80px 24px;
  }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.6rem; }
}
