:root {
  --dark: #050505;
  --dark2: #080808;
  --light: #EADDCA;
  --accent: #8B6F4E;
  --mid: #0e0e0e;
}

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

body {
  background: var(--dark);
  font-family: 'Cormorant Garamond', serif;
  color: var(--light);
}

/* ── NAV ── */
nav {
  position: absolute;
  width: 100%;
  top: 0;
  background: rgba(5,5,5,0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 25px 20px 25px 160px;
  z-index: 1000;
  border-bottom: 1px solid rgba(234,221,202,0.07);
  box-sizing: border-box;
}

nav a {
  color: var(--light);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s;
}

nav a:hover { opacity: 1; }

/* ── NAV LOGO ── */
.nav-logo-link {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  opacity: 1;
  z-index: 1001;
  flex-shrink: 0;
}

.nav-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── IMAGE ONLY SECTION ── */
.image-only-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background: var(--dark);
  overflow: hidden;
  width: 100%;
}

/* ── DESKTOP FIX ── */
@media (min-width: 768px) {
  .image-only-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px;
  }
}

.section-single-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media(min-width: 1200px) {
  .section-single-image {
    min-height: 600px;
  }
}

@media(max-width: 600px) {
  .section-single-image {
    min-height: 280px;
    object-fit: cover;
    width: 100%;
  }
}

/* ── HERO ── */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  gap: 0;
  padding-top: 0px;
  padding-bottom: 100px;
}

.hero::before { opacity: 1; }
.hero::after  { opacity: 1; }

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  margin-top: -60px;
}

.hero-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.8vw, 20px);
  letter-spacing: 0.08em;
  text-transform: none;
  opacity: 0;
  margin-bottom: 12px;
  animation: fadeUp 1s ease 0.5s forwards;
  color: var(--light);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.1;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-tagline {
  font-style: normal;
  font-size: clamp(12px, 2vw, 18px);
  opacity: 0;
  margin-top: 10px;
  color: var(--light);
  animation: fadeUp 1s ease 0.9s forwards;
  letter-spacing: 0.02em;
}

.hero-urgence {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--accent);
  animation: fadeUp 1s ease 1.1s forwards;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}

@media(min-width: 601px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

.cta {
  display: inline-block;
  padding: 13px 34px;
  border: 1px solid var(--light);
  color: var(--light);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  font-size: 11px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.cta:hover {
  background: var(--light);
  color: var(--dark);
}

.cta-ghost {
  border-color: rgba(234,221,202,0.35);
  color: rgba(234,221,202,0.7);
}

.cta-ghost:hover {
  border-color: var(--light);
  color: var(--dark);
  background: var(--light);
}

.cta-dark {
  border-color: var(--dark);
  color: var(--dark);
  background: transparent;
}

.cta-dark:hover {
  background: var(--dark);
  color: var(--light);
}

.hero-rule {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1.6s forwards;
  z-index: 1;
}

.hero-rule span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
}

.hero-rule .arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(234,221,202,0.5), transparent);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION BASE ── */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

.section-inner {
  padding: 110px 8%;
}

.dark-section { background: var(--dark); color: var(--light); }
.light-section { background: var(--light); color: var(--dark); }
.mid-section  { background: var(--mid);  color: var(--light); }

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 16px;
  display: block;
}

p {
  font-size: 18px;
  line-height: 1.8;
}

/* ── ABOUT ── */
#about .section-inner {
  position: relative;
}

.about-split {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.about-photo {
  flex: 0 0 380px;
  max-width: 380px;
}

.about-photo img {
  width: 100%;
  display: block;
  filter: grayscale(15%);
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

/* ── DOMAINES ── */
#domaines {
  position: relative;
  overflow: hidden;
}

#domaines::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img_paris.jpeg') center/cover no-repeat;
  opacity: 3%;
}

/* ── DOMAINES VERTICAL LIST (legacy, kept for other pages) ── */
.domaines-list {
  margin-top: 48px;
  position: relative;
  border-top: 1px solid rgba(234,221,202,0.12);
}

.domaine-item {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(234,221,202,0.12);
  text-decoration: none;
  color: var(--light);
  position: relative;
  transition: color 0.25s;
  cursor: pointer;
}

.domaine-item:hover { color: var(--light); }
.domaine-item:hover .domaine-title { color: var(--accent); }
.domaine-item:hover .domaine-arrow { opacity: 1; transform: translateX(0); }
.domaine-index { display: none; }

.domaine-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  letter-spacing: 0.03em;
  flex: 1;
  line-height: 1.3;
  transition: color 0.25s;
}

.domaine-desc { display: none; }

.domaine-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  opacity: 0;
  flex-shrink: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s;
  color: var(--accent);
}

@media (max-width: 700px) {
  .domaine-item { padding: 20px 0; }
}

/* ── PROCEDURE ── */
#procedure {
  position: relative;
  overflow: hidden;
}

#procedure::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img_procedure.jpeg') center/cover no-repeat;
  opacity: 3%;
}

.procedure-intro { margin-bottom: 60px; }

.procedure-intro p {
  font-size: 19px;
  line-height: 1.85;
  opacity: 0.88;
}

.procedure-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}

.procedure-col-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 14px;
}

.procedure-col h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.procedure-col p {
  font-size: 17px;
  opacity: 0.8;
  line-height: 1.75;
}

.procedure-sub {
  margin-top: 0;
  margin-bottom: 48px;
  border-top: 1px solid rgba(234,221,202,0.12);
}

.proc-item {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(234,221,202,0.12);
  text-decoration: none;
  color: var(--light);
  position: relative;
  transition: color 0.25s;
  cursor: pointer;
}

.proc-item:hover .proc-title { color: var(--accent); }
.proc-item:hover .proc-arrow { opacity: 1; transform: translateX(0); }
.proc-index { display: none; }

.proc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300;
  letter-spacing: 0.03em;
  flex: 1;
  line-height: 1.3;
  transition: color 0.25s;
}

.proc-desc { display: none; }

.proc-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  opacity: 0;
  flex-shrink: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s;
  color: var(--accent);
}

@media (max-width: 700px) {
  .proc-item { padding: 18px 0; }
}

.procedure-conclusion {
  border-top: 1px solid rgba(234,221,202,0.15);
  padding-top: 36px;
  font-size: 20px;
  font-style: italic;
  opacity: 0.7;
  max-width: 600px;
}

/* ── PARTENAIRE ── */
#partenaire {
  position: relative;
  overflow: hidden;
}

#partenaire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('large-2.webp') center/cover no-repeat;
  opacity: 0.2;
}

.partenaire-inner {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.partenaire-text { flex: 1; }

.partenaire-text p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 18px;
}

.partenaire-map { flex: 0 0 420px; }

.partenaire-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
  opacity: 0.85;
  filter: grayscale(30%) contrast(1.1);
}

.partenaire-address {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  opacity: 0.55;
  margin-top: 14px;
  border-left: 2px solid rgba(234,221,202,0.2);
  padding-left: 16px;
}

/* ── AVIS ── */
#avis .review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  border: 1px solid rgba(234,221,202,0.12);
  padding: 28px;
  background: rgba(234,221,202,0.02);
  transition: border-color 0.3s, background 0.3s;
}

.review-card:hover {
  border-color: rgba(234,221,202,0.3);
  background: rgba(234,221,202,0.04);
}

.review-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.4;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.review-card p {
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.85;
}

/* ── CONTACT ── */
#contact {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--light);
}

#contact::before,
#contact::after { display: none; }

#contact .section-inner {
  position: relative;
  z-index: 1;
}

.contact-wrap {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#contact .section-label,
#contact h2,
.contact-info p,
.contact-info a { color: var(--light); }

.contact-info p { font-size: 17px; opacity: 0.85; }
.contact-info a { text-decoration: underline; }
.contact-info .cta { margin-top: 12px; }

/* ── FORM ── */
.form-container {
  flex: 1;
  max-width: 600px;
}

.form-container h2 { color: var(--light); }

.form-desc {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 40px;
  margin-top: 14px;
  color: var(--light);
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--light);
  opacity: 0.7;
}

.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid rgba(234,221,202,0.25);
  background: rgba(255,255,255,0.05);
  color: var(--light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  padding: 13px 34px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: transparent;
  color: var(--light);
  border-color: var(--light);
}

/* ── RESPONSIVE ── */
@media(max-width: 900px) {
  .about-split,
  .partenaire-inner,
  #contact .contact-wrap { flex-direction: column; }
  .about-photo { flex: none; max-width: 100%; }
  .partenaire-map { flex: none; width: 100%; }
  .contact-map { flex: none; width: 100%; }
  .about-photo img { max-height: 400px; width: 100%; object-fit: cover; }
  #avis .review-grid { grid-template-columns: 1fr; }
  .procedure-cols { grid-template-columns: 1fr; gap: 32px; }
}

@media(max-width: 600px) {
  nav {
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px 12px 12px 80px;
    justify-content: center;
  }
  nav a { font-size: 9px; letter-spacing: 0.08em; }
  .nav-logo { height: 60px; }
  .nav-logo-link { left: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { align-items: center; }
  .section-inner { padding: 80px 6%; }
  .hero-content { margin-top: -40px; }
}

/* ── SECTION DIVIDERS ── */
.section-divider {
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, transparent, rgba(139,111,78,0.35), rgba(234,221,202,0.2), rgba(139,111,78,0.35), transparent);
  position: relative;
  overflow: visible;
}

.section-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 28px;
  color: var(--light);
  opacity: 0.4;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid rgba(234,221,202,0.08);
}

footer a { color: var(--light); text-decoration: underline; }

/* ── DOMAIN DETAIL PAGES ── */
.page-detail {
  display: none;
  min-height: 100vh;
  background: var(--dark);
  color: var(--light);
  padding: 120px 8% 80px;
}

.page-detail.active { display: block; }

.page-detail .back-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  opacity: 0.5;
  text-decoration: none;
  margin-bottom: 60px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.page-detail .back-btn:hover { opacity: 1; }

.page-detail h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  max-width: 700px;
}

.page-detail .detail-body { max-width: 680px; }

.page-detail .detail-body p {
  font-size: 19px;
  line-height: 1.85;
  opacity: 0.85;
  margin-bottom: 28px;
}

.page-detail .detail-cta { margin-top: 48px; }

.contact-map { margin-top: 40px; }

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
  filter: grayscale(40%) contrast(1.1);
  opacity: 0.9;
}

/* ── GOLD HEADINGS ── */
.gold-heading {
  display: block;
  color: var(--accent);
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}

/* ── FAQ ── */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(234,221,202,0.12);
}

.faq-item { border-bottom: 1px solid rgba(234,221,202,0.12); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--light);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: 0.01em;
  line-height: 1.4;
  transition: color 0.25s;
}

.faq-question:hover { color: var(--accent); }
.faq-question[aria-expanded="true"] { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  opacity: 0.6;
  transition: opacity 0.25s, transform 0.35s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--light);
  border-radius: 2px;
  transition: background 0.25s, transform 0.35s ease, opacity 0.35s ease;
}

.faq-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::before { background: var(--accent); }
.faq-question[aria-expanded="true"] .faq-icon::after {
  background: var(--accent);
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq-answer.open { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }

.faq-answer-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: rgba(234,221,202,0.78);
  margin-bottom: 16px;
}

.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner strong { color: rgba(234,221,202,0.95); font-weight: 600; }
.faq-answer.open .faq-answer-inner { padding-bottom: 32px; }

#xx {
  text-align: center;
  padding-top: 10px;
}