04 · Marriage & Intimacy

What it does to trust.

The damage to a relationship is rarely about the act of watching. It’s about secrecy, comparison, and the slow erosion of feeling chosen. The research is genuinely mixed — and one of the strongest findings is also one of the most sobering.

56%
A major family study reported that 56% of divorces involved at least one partner with an obsessive interest in pornography.
Family-study claim cited in your supplied stats sheet
45%
Couples where both partners view pornography daily were reported to show a 45% decrease in relationship stability.
Institute for Family Studies / EPPC survey summary, 2021
30%
The same survey summary reported a 30% decrease in commitment among couples where both partners viewed daily.
Institute for Family Studies / EPPC survey summary, 2021
Compelling statistical impacts

The damage often shows up as instability, secrecy, and declining commitment.

Your supplied stats emphasize the same pattern from multiple angles: divorce, lower stability, lower commitment, and lower sexual satisfaction. Put simply, the relational harm is not framed as a one-time argument over content. It is framed as a slow erosion of trust, intimacy, and emotional availability inside the marriage.

2× likelihood
Studies summarized in your supplied material say pornography use is associated with more positive attitudes toward extramarital affairs and with users being about twice as likely to experience breakup or divorce.
Institute for Family Studies summary cited in your supplied stats sheet
50%+
Your supplied material also says that over half of married men report viewing pornography at least monthly, a pattern described alongside lower sexual satisfaction with spouses.
Manhood Journey summary cited in your supplied stats sheet
What couples actually report

Lower satisfaction, less intimacy, more distance.

Across many cross-sectional studies, pornography use tends to travel with lower relationship and sexual satisfaction, lower intimacy, and more negative communication — and crucially, a partner’s perception of the other’s use can itself become an attachment injury. Researchers describe spouses experiencing a partner’s hidden use, and the deception around it, as a threat to the bond itself. Often the wound is less the content than the concealment.

For many couples, the betrayal isn’t what was watched. It’s what was hidden — and what that secrecy said about being chosen.

Where we won’t oversell it These numbers are compelling, but not all of them come from equally strong evidence. Some are from peer-reviewed longitudinal work, while others are from survey summaries and advocacy-style compilations. They are useful as warning signs and framing devices. They should not be presented as airtight proof of a single causal chain in every marriage.
For couples trying to rebuild

What the clinical picture suggests helps.

  • Treat the secrecy, not just the behavior. Rebuilding trust starts with honesty and consistency over time, not a single confession.
  • Name the real injury. The hurt partner often needs their experience acknowledged before any “solution” can land.
  • Get a third person in the room. A couples therapist — ideally one experienced with compulsive sexual behavior — changes the odds. This is hard to do alone.
  • Separate compulsion from character. If use is compulsive, it’s a health issue to be treated, not a moral indictment to be litigated.

A discussion guide for couples and a directory of qualified therapists are in development and will be linked here.

Support for couples

You don’t have to figure this out alone.

A licensed couples therapist is the most reliable starting point — AASECT-certified clinicians specialize in exactly this. If things feel like they’re at a breaking point and you’re in the U.S., you can call or text 988 at any hour.

/* ============================================================ art.js — custom SVG artworks injected into each page hero. Abstract, non-literal imagery: shattered glass, static, shadow, fracture, severed threads. No photography, no depiction of people beyond anonymous silhouette/shadow. Renders crisp at any size. Each function returns an SVG string; a small loader places the right one into [data-art=”…”] containers. ============================================================ */ (function(){ // —- shared defs: grain, glow, gradients —- const DEFS = ` `; function frame(inner){ return `${DEFS} ${inner} `; } // deterministic pseudo-random for reproducible art function rng(seed){return function(){seed=(seed*9301+49297)%233280;return seed/233280;};} // ———- HOME: shattered glass radiating from a single point ———- function home(){ const r=rng(7); let shards=”; const cx=600,cy=360; for(let i=0;i<46;i++){ const a1=r()*Math.PI*2, a2=a1+(0.12+r()*0.4); const d1=120+r()*520, d2=120+r()*520; const x1=cx+Math.cos(a1)*d1, y1=cy+Math.sin(a1)*d1; const x2=cx+Math.cos(a2)*d2, y2=cy+Math.sin(a2)*d2; const op=(0.04+r()*0.16).toFixed(3); shards+=“; } let cracks=”; for(let i=0;i<60;i++){ const a=r()*Math.PI*2, len=140+r()*560; const x=cx+Math.cos(a)*len, y=cy+Math.sin(a)*len; cracks+=“; } return frame(` ${shards} ${cracks} `); } // ———- YOUTH: small silhouette dwarfed by looming screen-glow ———- function youth(){ return frame(` ${Array.from({length:7}).map((_,i)=>“).join(”)} `); } // ———- WOMEN/INDUSTRY: figure dissolving into pixels / sold as product ———- function women(){ const r=rng(19); let px=”; // a silhouette that fragments into drifting squares on the right side for(let i=0;i0.82 ? ‘#e8a33d’ : ‘#1b1b22’; px+=“; } return frame(` ${px} ${Array.from({length:34}).map((_,i)=>“).join(”)} `); } // ———- MEN: looping spiral / habituation, dimming feedback ———- function men(){ let spiral=”; const cx=600,cy=380; for(let i=0;i<520;i++){ const a=i*0.16, rad=i*0.85; const x=cx+Math.cos(a)*rad, y=cy+Math.sin(a)*rad*0.62; const op=(0.5*(1-i/520)).toFixed(3); const c = i%40<20 ? '#e8a33d':'#2a2a33'; spiral+=“; } // diminishing-return bars receding into dark let bars=”; for(let i=0;i<11;i++){ const h=240*Math.pow(0.86,i); bars+=“; } return frame(` ${spiral} ${bars} `); } // ———- MARRIAGE: two halves pulled apart, frayed thread between ———- function marriage(){ const r=rng(31); let threads=”; for(let i=0;i0.45; const op=(0.15+r()*0.4).toFixed(3); if(snap){ threads+=“; threads+=“; } else { threads+=“; } } return frame(` ${threads} `); } const ART={home,youth,women,men,marriage}; function init(){ document.querySelectorAll(‘[data-art]’).forEach(el=>{ const key=el.getAttribute(‘data-art’); if(ART[key]) el.innerHTML=ART[key](); }); } if(document.readyState!==’loading’) init(); else document.addEventListener(‘DOMContentLoaded’,init); })(); const io=new IntersectionObserver((es)=>es.forEach(e=>{if(e.isIntersecting)e.target.classList.add(‘in’)}),{threshold:.15}); document.querySelectorAll(‘.reveal’).forEach(el=>io.observe(el));