:root {
  --nuit: #16191D;
  --nuit-2: #1E2228;
  --or: #C67A3E;
  --or-clair: #DDA06B;
  --ivoire: #EDEDEA;
  --texte: #D2D3D6;
  --gris: #9AA0A8;
  --filet: rgba(237, 237, 234, 0.15);
  --filet-or: rgba(198, 122, 62, 0.38);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--nuit);
  color: var(--ivoire);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--or); text-decoration: none; }
a:hover { color: var(--or-clair); }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.lbl {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gris);
  font-weight: 400;
}
.lbl-or { color: var(--or); }

h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.12; margin: 0; letter-spacing: -0.005em; }
h1 { font-size: clamp(38px, 6.4vw, 64px); }
h2 { font-size: clamp(30px, 4.4vw, 44px); }
h3 { font-size: clamp(21px, 2.4vw, 26px); font-weight: 400; }
p { margin: 0; }
.it { font-style: italic; color: var(--or); }

.prix { font-family: var(--serif); font-weight: 500; color: var(--or); }

/* ---------- en-tête ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 25, 29, 0.96);
  border-bottom: 1px solid var(--filet-or);
}
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.marque { display: flex; align-items: center; gap: 12px; }
.marque .nom { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: 0.24em; color: var(--or); line-height: 1; }
.marque .sous { font-size: 8.5px; letter-spacing: 0.2em; color: var(--gris); text-transform: uppercase; display: block; margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--ivoire); font-size: 15px; letter-spacing: 0.02em; white-space: nowrap; }
.nav a:hover { color: var(--or); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 22px;
  border: 1px solid var(--or);
  color: var(--or);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--or); color: var(--nuit); }
.btn-plein { background: var(--or); color: var(--nuit); }
.btn-plein:hover { background: var(--or-clair); color: var(--nuit); }

.burger { display: none; background: none; border: 1px solid var(--filet-or); color: var(--or); width: 44px; height: 44px; font-size: 18px; cursor: pointer; }

@media (max-width: 1040px) {
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--nuit); border-bottom: 1px solid var(--filet-or); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 24px; }
  .nav.ouvert { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--filet); }
  .nav .btn { margin-top: 16px; text-align: center; border-bottom: 1px solid var(--or); }
  .burger { display: block; }
  .nav a { white-space: normal; }
}

/* ---------- sections ---------- */
section { padding: 84px 0; border-top: 1px solid var(--filet); }
section:first-of-type { border-top: none; }
.section-tete { display: flex; flex-direction: column; gap: 16px; margin-bottom: 44px; max-width: 760px; }
.section-tete p { color: var(--texte); }

/* ---------- héros ---------- */
.hero { padding: 96px 0 84px; border-top: none; }
.hero .filet { width: 84px; height: 1px; background: var(--or); margin: 30px 0; }
.hero p.chapeau { font-size: 19px; color: var(--texte); max-width: 560px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero .repere { margin-top: 44px; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px; border-top: 1px solid var(--filet-or); padding-top: 26px; }
.hero .repere h3 { font-size: 20px; }
.hero .repere > div { display: flex; flex-direction: column; gap: 8px; }

/* ---------- colonnes constat ---------- */
.deux { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.col-titre { border-top: 1px solid var(--filet); padding-top: 18px; margin-bottom: 18px; }
.col-titre.or { border-top-color: var(--or); }
.liste { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.liste li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.6; }
.liste li::before { content: ""; display: block; width: 12px; height: 1px; background: var(--or); margin-top: 13px; flex-shrink: 0; }
.liste.sourd li { color: var(--gris); }

/* ---------- cartes ---------- */
.grille { display: grid; gap: 18px; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.carte {
  background: var(--nuit-2);
  border: 1px solid var(--filet);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.carte.mise-en-avant { border-color: var(--or); }
.carte .num { font-family: var(--serif); font-size: 15px; color: var(--or); letter-spacing: 0.1em; }
.carte .tarif { display: flex; align-items: baseline; gap: 8px; }
.carte .tarif .prix { font-size: 30px; }
.carte .tarif .unite { font-size: 13px; color: var(--gris); }
.carte .duree { font-size: 12px; letter-spacing: 0.06em; color: var(--gris); text-transform: uppercase; }
.carte p { color: var(--texte); font-size: 15.5px; line-height: 1.65; }
.carte .liste li { font-size: 15px; }
.carte .barre { text-decoration: line-through; color: var(--gris); }

/* ---------- bandeau ---------- */
.bandeau {
  border: 1px solid var(--or);
  background: var(--nuit-2);
  padding: 38px 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.bandeau .citation { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--ivoire); }
@media (max-width: 760px) { .bandeau { grid-template-columns: 1fr; } }

/* ---------- engagements ---------- */
.engagement { display: flex; gap: 24px; align-items: flex-start; border-top: 1px solid var(--filet); padding: 20px 0; }
.engagement:first-child { border-top: 1px solid var(--filet-or); }
.engagement .rom { font-family: var(--serif); font-size: 22px; color: var(--or); min-width: 34px; }
.engagement p { color: var(--texte); font-size: 16px; margin-top: 5px; }

/* ---------- métiers ---------- */
.metier-lien {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--filet);
  padding: 26px 0;
  color: var(--ivoire);
}
.metier-lien:last-child { border-bottom: 1px solid var(--filet); }
.metier-lien:hover { color: var(--or); }
.metier-lien .fleche { font-family: var(--serif); font-size: 26px; color: var(--or); }
.metier-lien p { color: var(--gris); font-size: 15.5px; margin-top: 6px; }

/* ---------- formulaire ---------- */
.form-grille { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.champ { display: flex; flex-direction: column; gap: 8px; }
.champ.large { grid-column: 1 / -1; }
label { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gris); }
input, select, textarea {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--ivoire);
  background: var(--nuit-2);
  border: 1px solid var(--filet);
  padding: 13px 14px;
  width: 100%;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--or); }
textarea { min-height: 130px; resize: vertical; }
select option { background: var(--nuit-2); color: var(--ivoire); }
.mention-form { font-size: 13px; color: var(--gris); margin-top: 18px; }

/* ---------- pied ---------- */
.site-footer { border-top: 1px solid var(--filet-or); padding: 54px 0 40px; }
.footer-haut { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 34px; }
.footer-haut h4 { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gris); font-weight: 400; margin: 0 0 14px; font-family: var(--sans); }
.footer-haut ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-haut a, .footer-haut li { font-size: 15px; color: var(--texte); }
.footer-bas { margin-top: 40px; border-top: 1px solid var(--filet); padding-top: 22px; font-size: 12.5px; line-height: 1.9; color: #868C94; }

/* ---------- divers ---------- */
.ancre { scroll-margin-top: 86px; }
.legal { max-width: 760px; }
.legal h2 { margin-top: 42px; }
.legal p { color: var(--texte); margin-top: 12px; font-size: 16px; }
