/* ==========================================================================
   StroCorten — design system
   Acier Corten : la matière s'oxyde et change avec le temps.
   Le motif "gradient d'oxydation" (encre -> rouille -> rouille claire)
   revient comme signature graphique du site.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root{
  --ink:#1A1815;
  --ink-soft:#2A2620;
  --stone-100:#F7F5F0;
  --stone-200:#EFEBE2;
  --stone-300:#E3DDD0;
  --rust-900:#4A2214;
  --rust-700:#7C371F;
  --rust-600:#A9502B;
  --rust-500:#BD6A3E;
  --rust-400:#D08A5C;
  --graphite:#4B473F;
  --graphite-light:#726C60;
  --white:#FCFBF9;
  --line:rgba(26,24,21,0.12);
  --line-light:rgba(252,251,249,0.16);
  --line-rust:rgba(169,80,43,0.4);
  --radius:2px;
  --container:1240px;
  --gutter:clamp(20px,5vw,64px);
  --oxidation: linear-gradient(90deg,var(--ink) 0%,var(--rust-700) 35%,var(--rust-500) 68%,var(--rust-400) 100%);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important;}
}

html,body{overflow-x:hidden;max-width:100%;}
html.nav-open,html.nav-open body{overflow:hidden;height:100%;}
body{
  margin:0;
  background:var(--stone-100);
  color:var(--ink);
  font-family:'IBM Plex Sans',Arial,sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:'Space Grotesk',Arial,sans-serif;
  font-weight:600;
  line-height:1.12;
  margin:0 0 0.5em;
  color:var(--ink);
  letter-spacing:-0.01em;
}
h1{font-size:clamp(2.4rem,5.4vw,4.6rem);font-weight:700;}
h2{font-size:clamp(1.9rem,3.6vw,3rem);}
h3{font-size:clamp(1.25rem,2vw,1.6rem);}
p{margin:0 0 1em;color:var(--graphite);max-width:62ch;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;}

.container{max-width:var(--container);margin:0 auto;padding-left:var(--gutter);padding-right:var(--gutter);}

.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;}

:focus-visible{outline:2px solid var(--rust-600);outline-offset:3px;}

/* ---------- oxidation rule (signature motif) ---------- */
.rule{
  height:3px;
  width:64px;
  background:var(--oxidation);
  border:0;
  margin:0 0 1.4rem;
}
.rule--center{margin-left:auto;margin-right:auto;}
.rule--wide{width:100%;height:1px;background:var(--line);margin:0;}

/* ---------- label (structural, not decorative caps) ---------- */
.label{
  font-family:'Space Grotesk',Arial,sans-serif;
  font-size:0.8rem;
  letter-spacing:0.02em;
  color:var(--rust-600);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:0.5em;
  margin-bottom:0.9em;
}
.label::before{content:"";width:18px;height:1px;background:var(--rust-600);}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.6em;
  padding:0.95em 1.8em;
  font-family:'Space Grotesk',Arial,sans-serif;
  font-weight:600;
  font-size:0.98rem;
  border-radius:var(--radius);
  border:1px solid transparent;
  cursor:pointer;
  transition:background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px);}
.btn-primary{background:var(--rust-600);color:var(--white);}
.btn-primary:hover{background:var(--rust-700);}
.btn-dark{background:var(--ink);color:var(--white);}
.btn-dark:hover{background:var(--ink-soft);}
.btn-outline{background:transparent;color:var(--ink);border-color:var(--ink);}
.btn-outline:hover{background:var(--ink);color:var(--white);}
.btn-outline-light{background:transparent;color:var(--white);border-color:var(--line-light);}
.btn-outline-light:hover{background:var(--white);color:var(--ink);}
.btn-whatsapp{background:#25D366;color:#08350F;}
.btn-whatsapp:hover{background:#1FBE5B;}
.btn-sm{padding:0.65em 1.2em;font-size:0.86rem;}

.btn-row{display:flex;flex-wrap:wrap;gap:0.9rem;align-items:center;}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(247,245,240,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header .container{
  display:flex;align-items:center;justify-content:space-between;
  height:78px;
}
.logo{
  font-family:'Space Grotesk',Arial,sans-serif;
  font-size:1.35rem;
  font-weight:700;
  letter-spacing:-0.01em;
  display:flex;align-items:center;gap:0.45em;
}
.logo span{color:var(--rust-600);}
.logo .logo-bar{width:3px;height:20px;background:var(--oxidation);display:inline-block;}

.main-nav{display:flex;align-items:center;gap:2.1rem;}
.main-nav a:not(.btn){
  font-size:0.95rem;font-weight:500;color:var(--ink);position:relative;padding:0.3em 0;
}
.main-nav a:not(.btn)::after{
  content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:var(--rust-600);
  transition:width .25s ease;
}
.main-nav a:not(.btn):hover::after,
.main-nav a.active::after{width:100%;}
.main-nav a.active{color:var(--rust-700);}

.nav-links{display:flex;align-items:center;gap:2.1rem;}
.nav-cta{display:flex;align-items:center;gap:0.9rem;}

.hamburger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:40px;height:40px;border:1px solid var(--line);background:none;cursor:pointer;
  border-radius:var(--radius);
}
.hamburger span{display:block;width:18px;height:2px;background:var(--ink);margin:0 auto;transition:transform .25s ease, opacity .25s ease;}
.hamburger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.is-open span:nth-child(2){opacity:0;}
.hamburger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.mobile-panel{
  display:none;position:fixed;inset:78px 0 0 0;background:var(--stone-100);z-index:250;
  padding:2rem var(--gutter);overflow-y:auto;-webkit-overflow-scrolling:touch;
}
.mobile-panel.is-open{display:block;}
.mobile-panel a{display:block;padding:0.9em 0;font-family:'Space Grotesk',Arial,sans-serif;font-size:1.3rem;font-weight:600;border-bottom:1px solid var(--line);}
.mobile-panel .btn{margin-top:1.6rem;width:100%;}

@media (max-width:920px){
  .nav-links{display:none;}
  .nav-cta .btn:not(.btn-whatsapp-nav){display:none;}
  .hamburger{display:flex;}
}
@media (min-width:921px){
  .mobile-panel{display:none !important;}
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;min-height:92vh;display:flex;align-items:flex-end;
  overflow:hidden;color:var(--white);
}
.hero-media{position:absolute;inset:0;}
.hero-media img{width:100%;height:100%;object-fit:cover;}
.hero-media::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(15,13,11,0.88) 0%,rgba(15,13,11,0.42) 46%,rgba(15,13,11,0.15) 70%,rgba(15,13,11,0.35) 100%);
}
.hero-content{position:relative;z-index:2;padding:0 var(--gutter) 4.2rem;width:100%;}
.hero-eyebrow{
  display:flex;align-items:center;gap:0.7em;font-family:'Space Grotesk',Arial,sans-serif;
  font-size:0.9rem;font-weight:600;color:var(--rust-400);margin-bottom:1.1rem;
}
.hero-eyebrow .dot{width:6px;height:6px;background:var(--rust-500);border-radius:50%;}
.hero h1{
  color:var(--white);
  max-width:14ch;
  overflow:hidden;
}
.hero h1 .line{display:block;transform:translateY(110%);animation:hero-rise .9s cubic-bezier(.22,.85,.32,1) forwards;}
.hero h1 .line:nth-child(2){animation-delay:.1s;}
@keyframes hero-rise{to{transform:translateY(0);}}
.hero-sub{
  color:rgba(252,251,249,0.86);font-size:1.15rem;max-width:46ch;margin:1.1rem 0 2rem;
  opacity:0;animation:hero-fade .8s ease forwards;animation-delay:.5s;
}
@keyframes hero-fade{to{opacity:1;}}
.hero-foot{
  margin-top:2.2rem;display:flex;align-items:center;gap:0.9em;
  font-size:0.85rem;color:rgba(252,251,249,0.7);
  font-family:'Space Grotesk',Arial,sans-serif;letter-spacing:0.02em;
}
.hero-foot .sep{width:4px;height:4px;background:var(--rust-500);border-radius:50%;}
.hero-scroll{
  position:absolute;right:var(--gutter);bottom:2.4rem;z-index:2;
  writing-mode:vertical-rl;color:rgba(252,251,249,0.6);font-size:0.78rem;
  display:flex;align-items:center;gap:0.8em;font-family:'Space Grotesk',Arial,sans-serif;
}
.hero-scroll::after{content:"";width:1px;height:46px;background:rgba(252,251,249,0.4);}
@media (max-width:720px){.hero-scroll{display:none;}}

/* page hero (inner pages) */
.page-hero{
  position:relative;color:var(--white);min-height:52vh;display:flex;align-items:flex-end;overflow:hidden;
}
.page-hero .hero-media img{filter:saturate(0.95);}
.page-hero .container{position:relative;z-index:2;padding-bottom:3.4rem;padding-top:2rem;}
.page-hero h1{color:var(--white);max-width:20ch;}
.breadcrumb{font-size:0.85rem;color:rgba(252,251,249,0.65);margin-bottom:1rem;font-family:'Space Grotesk',Arial,sans-serif;}
.breadcrumb a{color:rgba(252,251,249,0.85);}
.breadcrumb a:hover{color:var(--rust-400);}

/* ==========================================================================
   Sections generic
   ========================================================================== */
section{padding:clamp(4rem,8vw,7.5rem) 0;}
.section-alt{background:var(--stone-200);}
.section-dark{background:var(--ink);color:var(--stone-100);}
.section-dark p{color:rgba(252,251,249,0.72);}
.section-dark .rule--wide{background:var(--line-light);}
.section-head{max-width:640px;margin-bottom:3.2rem;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head-row{
  display:flex;justify-content:space-between;align-items:flex-end;gap:2rem;margin-bottom:3.2rem;
  flex-wrap:wrap;
}

/* ---------- avantages ---------- */
.advantages{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border-top:1px solid var(--line);}
.advantage{
  padding:2.4rem 1.8rem 2.4rem 0;border-right:1px solid var(--line);position:relative;
}
.advantage:last-child{border-right:none;}
.advantage-num{
  font-family:'Space Grotesk',Arial,sans-serif;font-size:0.82rem;color:var(--rust-600);font-weight:600;
  margin-bottom:1.6rem;display:block;
}
.advantage-icon{width:40px;height:40px;margin-bottom:1.4rem;color:var(--rust-600);}
.advantage h3{margin-bottom:0.55em;}
.advantage p{font-size:0.94rem;margin-bottom:0;}
@media (max-width:900px){
  .advantages{grid-template-columns:repeat(2,1fr);}
  .advantage:nth-child(2n){border-right:none;}
  .advantage{border-bottom:1px solid var(--line);}
}
@media (max-width:560px){
  .advantages{grid-template-columns:1fr;}
  .advantage{border-right:none;}
}

/* ---------- solutions / services grid ---------- */
.solutions-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line);}
.solution-card{
  background:var(--stone-100);position:relative;overflow:hidden;
}
.solution-media{position:relative;aspect-ratio:4/3;overflow:hidden;}
.solution-media img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.2,.7,.3,1);}
.solution-card:hover .solution-media img{transform:scale(1.06);}
.solution-media::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(26,24,21,0.55),transparent 55%);}
.solution-index{
  position:absolute;left:1.1rem;top:1.1rem;color:var(--white);font-family:'Space Grotesk',Arial,sans-serif;
  font-size:0.82rem;font-weight:600;z-index:1;
}
.solution-body{padding:1.6rem 1.6rem 1.9rem;}
.solution-body h3{margin-bottom:0.5em;}
.solution-body p{font-size:0.92rem;margin-bottom:1.2em;}
.solution-link{
  display:inline-flex;align-items:center;gap:0.5em;font-family:'Space Grotesk',Arial,sans-serif;
  font-size:0.88rem;font-weight:600;color:var(--rust-600);border-bottom:1px solid var(--line-rust);padding-bottom:2px;
  transition:color .2s ease,border-color .2s ease;
}
.solution-link:hover{color:var(--rust-700);border-color:var(--rust-700);}
@media (max-width:920px){.solutions-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:620px){.solutions-grid{grid-template-columns:1fr;}}

/* ---------- projects gallery ---------- */
.filters{display:flex;flex-wrap:wrap;gap:0.6rem;margin-bottom:2.6rem;}
.filter-btn{
  padding:0.55em 1.2em;border:1px solid var(--line);background:transparent;border-radius:100px;
  font-family:'Space Grotesk',Arial,sans-serif;font-size:0.85rem;font-weight:500;cursor:pointer;
  transition:background-color .2s ease,color .2s ease,border-color .2s ease;
}
.filter-btn:hover{border-color:var(--rust-600);}
.filter-btn.is-active{background:var(--ink);color:var(--white);border-color:var(--ink);}

.projects-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;}
.project-card{
  position:relative;overflow:hidden;aspect-ratio:4/5;background:var(--ink);
  transition:opacity .35s ease, transform .35s ease;
}
.project-card.is-hidden{display:none;}
.project-card img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.2,.7,.3,1);opacity:0.92;}
.project-card:hover img{transform:scale(1.05);}
.project-card::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(15,13,11,0.9) 0%,rgba(15,13,11,0.05) 45%);}
.project-tag{
  position:absolute;top:1rem;left:1rem;z-index:1;font-family:'Space Grotesk',Arial,sans-serif;
  font-size:0.72rem;font-weight:600;color:var(--white);background:rgba(15,13,11,0.55);
  padding:0.35em 0.75em;border:1px solid rgba(252,251,249,0.3);
}
.project-info{position:absolute;left:1.1rem;right:1.1rem;bottom:1.1rem;z-index:1;color:var(--white);}
.project-info h3{color:var(--white);margin-bottom:0.2em;font-size:1.1rem;}
.project-info .meta{font-size:0.85rem;color:rgba(252,251,249,0.75);font-family:'Space Grotesk',Arial,sans-serif;}
@media (max-width:920px){.projects-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.projects-grid{grid-template-columns:1fr;}}

/* ---------- sur mesure split ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:0;align-items:stretch;}
.split-media{position:relative;min-height:420px;}
.split-media img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.split-text{padding:clamp(2.4rem,5vw,5rem);display:flex;flex-direction:column;justify-content:center;background:var(--ink);color:var(--white);}
.split-text p{color:rgba(252,251,249,0.75);}
.split-text h2{color:var(--white);max-width:16ch;}
@media (max-width:860px){
  .split{grid-template-columns:1fr;}
  .split-media{min-height:280px;}
}

/* ---------- professionnels ---------- */
.pro-section{display:grid;grid-template-columns:0.9fr 1.1fr;gap:clamp(2rem,5vw,5rem);align-items:center;}
.pro-list{display:grid;gap:0;margin-top:2rem;}
.pro-item{display:flex;gap:1rem;padding:1.1rem 0;border-top:1px solid var(--line);}
.pro-item:last-child{border-bottom:1px solid var(--line);}
.pro-item .mark{color:var(--rust-600);font-family:'Space Grotesk',Arial,sans-serif;font-weight:600;}
.pro-item p{margin:0;font-size:0.96rem;}
@media (max-width:860px){.pro-section{grid-template-columns:1fr;}}

/* ---------- process timeline ---------- */
.process{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border-top:1px solid var(--line-light);margin-top:1rem;}
.process-step{padding:2rem 1.6rem 0 0;border-right:1px solid var(--line-light);}
.process-step:last-child{border-right:none;}
.process-num{
  font-family:'Space Grotesk',Arial,sans-serif;font-size:2.4rem;font-weight:700;color:var(--rust-500);
  display:block;margin-bottom:1.2rem;line-height:1;
}
.process-step h3{color:var(--white);}
.process-step p{color:rgba(252,251,249,0.7);font-size:0.92rem;}
@media (max-width:860px){
  .process{grid-template-columns:repeat(2,1fr);}
  .process-step{border-bottom:1px solid var(--line-light);padding-bottom:2rem;}
  .process-step:nth-child(2n){border-right:none;}
}
@media (max-width:560px){
  .process{grid-template-columns:1fr;}
  .process-step{border-right:none;}
}

/* ---------- about ---------- */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,5rem);align-items:center;}
.about-points{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem;margin-top:1.8rem;}
.about-point h3{font-size:1.05rem;margin-bottom:0.3em;}
.about-point p{font-size:0.92rem;}
@media (max-width:860px){.about-grid{grid-template-columns:1fr;}}
@media (max-width:520px){.about-points{grid-template-columns:1fr;}}

/* ---------- CTA band ---------- */
.cta-band{
  position:relative;background:var(--ink);color:var(--white);overflow:hidden;text-align:center;
}
.cta-band::before{
  content:"";position:absolute;inset:0;background:var(--oxidation);opacity:0.14;
}
.cta-band .container{position:relative;z-index:1;}
.cta-band h2{color:var(--white);max-width:20ch;margin-left:auto;margin-right:auto;}
.cta-band p{color:rgba(252,251,249,0.75);max-width:50ch;margin-left:auto;margin-right:auto;}
.cta-band .btn-row{justify-content:center;margin-top:1.8rem;}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-layout{display:grid;grid-template-columns:0.85fr 1.15fr;gap:clamp(2rem,5vw,4rem);align-items:start;}
.contact-cards{display:grid;gap:1px;background:var(--line);border:1px solid var(--line);}
.contact-card{background:var(--stone-100);padding:1.5rem 1.6rem;display:flex;gap:1rem;align-items:flex-start;}
.contact-card .ic{width:22px;height:22px;color:var(--rust-600);flex:none;margin-top:2px;}
.contact-card h3{font-size:1rem;margin-bottom:0.25em;}
.contact-card p{font-size:0.92rem;margin-bottom:0;}
.contact-card a:hover{color:var(--rust-600);}

.form-panel{background:var(--stone-100);border:1px solid var(--line);padding:clamp(1.6rem,4vw,2.6rem);}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;}
.form-field{display:flex;flex-direction:column;gap:0.5rem;}
.form-field.full{grid-column:1/-1;}
.form-field label{font-size:0.85rem;font-weight:600;font-family:'Space Grotesk',Arial,sans-serif;}
.form-field input,.form-field select,.form-field textarea{
  width:100%;min-width:0;box-sizing:border-box;
  border:1px solid var(--line);background:var(--white);padding:0.85em 1em;font-family:inherit;font-size:0.95rem;
  border-radius:var(--radius);color:var(--ink);
}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{border-color:var(--rust-600);}
.form-field textarea{resize:vertical;min-height:130px;}
.form-field input[type="file"]{padding:0.65em 0.6em;font-size:0.85rem;}
.form-note{font-size:0.82rem;color:var(--graphite-light);margin-top:0.4rem;}
.form-submit{margin-top:1.8rem;display:flex;align-items:center;gap:1.2rem;flex-wrap:wrap;}
.form-status{font-size:0.9rem;color:var(--rust-700);font-weight:500;}
@media (max-width:920px){.contact-layout{grid-template-columns:1fr;}}
@media (max-width:560px){.form-grid{grid-template-columns:1fr;}}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{background:var(--ink);color:rgba(252,251,249,0.75);padding:4.5rem 0 2rem;}
.footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:2.4rem;padding-bottom:3rem;border-bottom:1px solid var(--line-light);}
.footer-brand .logo{color:var(--white);}
.footer-brand p{color:rgba(252,251,249,0.65);margin-top:1rem;font-size:0.92rem;}
.footer-col h4{font-family:'Space Grotesk',Arial,sans-serif;color:var(--white);font-size:0.95rem;margin-bottom:1.1rem;}
.footer-col ul li{margin-bottom:0.7rem;}
.footer-col a{font-size:0.9rem;color:rgba(252,251,249,0.68);}
.footer-col a:hover{color:var(--rust-400);}
.footer-bottom{display:flex;justify-content:space-between;flex-wrap:wrap;gap:0.8rem;padding-top:1.6rem;font-size:0.82rem;color:rgba(252,251,249,0.5);}
@media (max-width:860px){.footer-top{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer-top{grid-template-columns:1fr;}}

/* ---------- floating whatsapp ---------- */
.whatsapp-float{
  position:fixed;right:22px;bottom:22px;z-index:200;
  width:58px;height:58px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.28);transition:transform .2s ease;
}
.whatsapp-float:hover{transform:scale(1.06);}
.whatsapp-float svg{width:30px;height:30px;fill:#fff;}
.whatsapp-float.is-hidden{display:none;}
@media (max-width:560px){
  .whatsapp-float{width:50px;height:50px;right:16px;bottom:16px;}
  .whatsapp-float svg{width:26px;height:26px;}
}

/* ---------- solutions detail rows ---------- */
.detail-row{
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4.5rem);align-items:center;
  padding:clamp(3rem,6vw,5rem) 0;border-bottom:1px solid var(--line);
}
.detail-row:last-child{border-bottom:none;}
.detail-row:nth-child(even) .detail-media{order:2;}
.detail-media{position:relative;aspect-ratio:5/4;overflow:hidden;}
.detail-media img{width:100%;height:100%;object-fit:cover;}
.detail-num{
  font-family:'Space Grotesk',Arial,sans-serif;font-size:0.85rem;font-weight:600;color:var(--rust-600);
  display:block;margin-bottom:0.9rem;
}
.detail-text ul{margin:1.2rem 0 1.6rem;display:grid;gap:0.6rem;}
.detail-text ul li{font-size:0.92rem;color:var(--graphite);padding-left:1.1rem;position:relative;}
.detail-text ul li::before{content:"";position:absolute;left:0;top:0.6em;width:6px;height:1px;background:var(--rust-600);}
@media (max-width:820px){
  .detail-row{grid-template-columns:1fr;}
  .detail-row:nth-child(even) .detail-media{order:0;}
}

/* ---------- misc pages ---------- */
.simple-page section:first-of-type{padding-top:clamp(3rem,6vw,5rem);}
.text-block{max-width:74ch;}
.text-block h2{margin-top:1.6em;}
