/* ==========================================================================
   Dimitri Charlier Immo V3 — CSS global
   Design : rouge Dr HOUSE-IMMO / noir / blanc / bleu-vert
   ========================================================================== */

:root{
  --dc-red:#e31e24;
  --dc-red-dark:#c4161b;
  --dc-black:#111111;
  --dc-dark:#202020;
  --dc-teal:#0d6f6d;
  --dc-grey:#6d6d6d;
  --dc-light:#f5f5f5;
  --dc-white:#ffffff;
  --dc-line:#e6e6e6;
  --dc-shadow:0 14px 38px rgba(0,0,0,.10);
  --dc-shadow-soft:0 8px 24px rgba(0,0,0,.07);
  --dc-radius:12px;
  --dc-max:1180px;
  --dc-font:"Poppins","Montserrat","Inter","Segoe UI",Arial,sans-serif;
  --dc-script:"Segoe Script","Brush Script MT",cursive;
}

body{
  background:#fff;
}

.dc-v3{
  font-family:var(--dc-font);
  color:var(--dc-black);
  background:#fff;
  letter-spacing:-.01em;
}

.dc-v3 *{box-sizing:border-box;}
.dc-container{width:min(var(--dc-max), calc(100% - 42px));margin-inline:auto;}
.dc-red{color:var(--dc-red);}
.dc-teal{color:var(--dc-teal);}

/* Header */
.dc-header{
  background:#fff;
  border-bottom:1px solid var(--dc-line);
  box-shadow:0 5px 22px rgba(0,0,0,.04);
  position:sticky;
  top:0;
  z-index:50;
}

.dc-header__inner{
  min-height:82px;
  display:flex;
  align-items:center;
  gap:28px;
}

.dc-logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none!important;
  color:var(--dc-black);
  margin-right:auto;
}

.dc-logo img{width:174px;height:auto;display:block;}

.dc-nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:14px;
  font-weight:700;
}

.dc-nav a{
  color:var(--dc-black)!important;
  text-decoration:none!important;
  padding:29px 0 25px;
  border-bottom:4px solid transparent;
}

.dc-nav a:hover,.dc-nav a.is-active{
  border-color:var(--dc-red);
  color:var(--dc-red)!important;
}

.dc-phone{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:13px 18px;
  border-radius:6px;
  background:var(--dc-red);
  color:#fff!important;
  font-weight:900;
  text-decoration:none!important;
  white-space:nowrap;
}

.dc-mobile-toggle{display:none;}

/* Buttons */
.dc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:48px;
  padding:0 25px;
  border-radius:5px;
  text-decoration:none!important;
  text-transform:uppercase;
  font-weight:900;
  font-size:13px;
  letter-spacing:.02em;
  border:2px solid transparent;
  transition:all .18s ease;
  cursor:pointer;
}

.dc-btn--red{background:var(--dc-red);color:#fff!important;}
.dc-btn--red:hover{background:var(--dc-red-dark);transform:translateY(-1px);}
.dc-btn--dark{background:var(--dc-black);color:#fff!important;}
.dc-btn--dark:hover{background:#333;}
.dc-btn--outline{background:#fff;color:var(--dc-red)!important;border-color:var(--dc-red);}
.dc-btn--outline:hover{background:var(--dc-red);color:#fff!important;}
.dc-btn--wide{width:100%;}

/* Hero */
.dc-hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.16) 68%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1900&q=80") center/cover;
}

.dc-hero__inner{
  min-height:460px;
  display:grid;
  grid-template-columns:1fr 360px;
  align-items:center;
  gap:50px;
  padding:58px 0;
}

.dc-hero h1{
  margin:0 0 18px;
  font-size:clamp(46px, 6vw, 76px);
  line-height:.98;
  font-weight:900;
  letter-spacing:-.055em;
}

.dc-hero h1 span{
  color:var(--dc-red);
}

.dc-hero h2{
  margin:0 0 22px;
  max-width:460px;
  font-size:30px;
  line-height:1.12;
  font-weight:800;
}

.dc-hero p{
  max-width:530px;
  color:#333;
  font-size:17px;
  line-height:1.7;
  margin:0 0 24px;
}

.dc-hero__actions{display:flex;gap:15px;flex-wrap:wrap;}

.dc-portrait-card{
  justify-self:end;
  width:330px;
  position:relative;
}

.dc-portrait{
  aspect-ratio:1/1;
  border-radius:50%;
  border:8px solid rgba(255,255,255,.92);
  background:url("https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&w=700&q=80") center/cover;
  box-shadow:var(--dc-shadow);
}

.dc-coffee-badge{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  background:var(--dc-red);
  color:#fff;
  border-radius:7px;
  padding:15px 18px;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  text-transform:uppercase;
  box-shadow:var(--dc-shadow);
}

.dc-coffee-badge small{
  display:block;
  font-size:12px;
  text-transform:none;
  font-weight:700;
}

/* Benefits */
.dc-benefits{
  background:#fff;
  border-bottom:1px solid var(--dc-line);
}

.dc-benefits__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.dc-benefit{
  text-align:center;
  padding:34px 24px;
  border-right:1px solid var(--dc-line);
}

.dc-benefit:last-child{border-right:0;}

.dc-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  margin:0 auto 14px;
  color:var(--dc-black);
}

.dc-icon svg{
  width:48px;
  height:48px;
  stroke:currentColor;
  stroke-width:1.7;
  fill:none;
}

.dc-benefit h3{
  margin:0 0 8px;
  color:var(--dc-red);
  font-size:16px;
  line-height:1.25;
}

.dc-benefit p{
  margin:0;
  font-size:14px;
  color:#333;
  line-height:1.45;
}

/* Sections */
.dc-section{
  padding:58px 0;
}

.dc-section--soft{background:#f8f8f8;}

.dc-section__head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:28px;
}

.dc-section__head h2{
  margin:0;
  font-size:34px;
  line-height:1.12;
  font-weight:900;
  letter-spacing:-.035em;
}

.dc-section__head p{
  margin:9px 0 0;
  color:#555;
  max-width:640px;
}

/* Properties */
.dc-properties{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.dc-card{
  background:#fff;
  border:1px solid var(--dc-line);
  border-radius:8px;
  overflow:hidden;
  box-shadow:var(--dc-shadow-soft);
}

.dc-property__image{
  display:block;
  min-height:170px;
  background-size:cover;
  background-position:center;
  position:relative;
}

.dc-property__image span{
  position:absolute;
  left:9px;
  top:9px;
  background:var(--dc-red);
  color:#fff;
  padding:4px 8px;
  border-radius:3px;
  font-size:10px;
  text-transform:uppercase;
  font-weight:900;
}

.dc-property__body{padding:16px;}

.dc-property h3{
  margin:0 0 6px;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:.01em;
}

.dc-price{
  margin:0 0 12px;
  color:var(--dc-red);
  font-size:21px;
  font-weight:900;
}

.dc-facts{
  display:flex;
  flex-wrap:wrap;
  gap:9px 12px;
  padding:0;
  margin:0 0 16px;
  list-style:none;
  color:#333;
  font-size:12px;
  font-weight:700;
}

.dc-note{
  text-align:center;
  color:#555;
  font-size:13px;
  margin:22px 0 0;
}

/* CTA strip */
.dc-cta-strip{
  background:#fff;
  padding:42px 0;
  border-top:1px solid var(--dc-line);
  border-bottom:1px solid var(--dc-line);
}

.dc-cta-box{
  display:grid;
  grid-template-columns:90px 1fr 220px;
  gap:28px;
  align-items:center;
  background:#fff;
  border-radius:10px;
}

.dc-cta-icon{
  width:88px;
  height:88px;
  border-radius:8px;
  background:var(--dc-red);
  color:#fff;
  display:grid;
  place-items:center;
}

.dc-cta-icon svg{width:56px;height:56px;stroke:currentColor;fill:none;stroke-width:1.6;}

.dc-cta-box h2{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.15;
  font-weight:900;
}

.dc-cta-box p{
  margin:0;
  color:#444;
}

.dc-cta-actions{display:grid;gap:12px;}

/* Reviews */
.dc-reviews{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.dc-review{
  padding:25px;
  border-radius:8px;
  border:1px solid var(--dc-line);
  box-shadow:var(--dc-shadow-soft);
  background:#fff;
}

.dc-review::before{
  content:"“";
  display:block;
  color:var(--dc-red);
  font-size:50px;
  font-weight:900;
  line-height:.6;
}

.dc-review p{
  margin:0 0 15px;
  font-size:14px;
  line-height:1.65;
}

.dc-stars{
  color:#f1a20d;
  letter-spacing:.12em;
  font-weight:900;
  margin-bottom:10px;
}

.dc-review strong{display:block;}
.dc-review span{display:block;font-size:13px;color:#555;}

/* Blog */
.dc-posts{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.dc-post{
  background:#fff;
  border-radius:8px;
  overflow:hidden;
}

.dc-post__image{
  height:140px;
  background-size:cover;
  background-position:center;
  border-radius:8px;
  margin-bottom:16px;
}

.dc-post h3{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.25;
  font-weight:900;
}

.dc-post__meta{
  font-size:12px;
  color:#666;
  margin-bottom:10px;
}

.dc-post a{
  color:var(--dc-red)!important;
  font-weight:900;
  text-decoration:none!important;
}

/* Footer */
.dc-footer-cta{
  background:
    linear-gradient(90deg, var(--dc-red), rgba(227,30,36,.94)),
    url("https://images.unsplash.com/photo-1511920170033-f8396924c348?auto=format&fit=crop&w=1700&q=80") center/cover;
  color:#fff;
  padding:36px 0;
}

.dc-footer-cta__inner{
  display:grid;
  grid-template-columns:80px 1fr 230px;
  gap:24px;
  align-items:center;
}

.dc-footer-cta h2{
  margin:0 0 6px;
  font-size:28px;
  font-weight:900;
}

.dc-footer-cta p{margin:0;color:rgba(255,255,255,.92);}

.dc-footer{
  background:var(--dc-black);
  color:#fff;
  padding:34px 0 18px;
}

.dc-footer__grid{
  display:grid;
  grid-template-columns:1fr 1fr 260px;
  gap:32px;
  align-items:center;
}

.dc-footer img{width:210px;}

.dc-footer a{color:#fff!important;text-decoration:none!important;}
.dc-footer p{margin:4px 0;color:rgba(255,255,255,.82);}
.dc-footer__review{
  border:1px solid rgba(255,255,255,.2);
  padding:16px;
  border-radius:8px;
}

.dc-legal{
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:24px;
  padding-top:14px;
  font-size:12px;
  color:rgba(255,255,255,.65);
}

/* Helper image backgrounds */
.dc-img-vignes{background-image:url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=800&q=80");}
.dc-img-ocean{background-image:url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=800&q=80");}
.dc-img-dunes{background-image:url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=800&q=80");}
.dc-img-maison{background-image:url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=800&q=80");}

/* Responsive */
@media (max-width:1100px){
  .dc-nav{gap:16px;font-size:13px;}
  .dc-hero__inner{grid-template-columns:1fr 300px;}
  .dc-portrait-card{width:290px;}
  .dc-properties,.dc-posts{grid-template-columns:repeat(2,1fr);}
}

@media (max-width:880px){
  .dc-header__inner{min-height:72px;}
  .dc-mobile-toggle{display:inline-flex;margin-left:10px;background:#fff;border:1px solid var(--dc-line);border-radius:6px;padding:9px 11px;font-weight:900;}
  .dc-nav{
    display:none;
    position:absolute;
    left:0;right:0;top:72px;
    background:#fff;
    border-top:1px solid var(--dc-line);
    box-shadow:var(--dc-shadow);
    padding:14px 22px;
    flex-direction:column;
    align-items:flex-start;
  }
  .dc-nav.is-open{display:flex;}
  .dc-nav a{padding:8px 0;border-bottom:0;}
  .dc-phone{display:none;}
  .dc-hero__inner{grid-template-columns:1fr;min-height:auto;padding:44px 0;}
  .dc-portrait-card{justify-self:start;width:min(330px,100%);}
  .dc-benefits__grid,.dc-reviews,.dc-footer__grid,.dc-footer-cta__inner,.dc-cta-box{grid-template-columns:1fr;}
  .dc-benefit{border-right:0;border-bottom:1px solid var(--dc-line);}
  .dc-section__head{display:block;}
}

@media (max-width:620px){
  .dc-container{width:min(100% - 28px,var(--dc-max));}
  .dc-logo img{width:152px;}
  .dc-hero h1{font-size:45px;}
  .dc-hero h2{font-size:25px;}
  .dc-properties,.dc-posts{grid-template-columns:1fr;}
  .dc-section{padding:46px 0;}
  .dc-footer-cta__inner{gap:16px;}
}
